2024-12-03 13:56:22 +08:00

21 lines
272 B
JavaScript

// plugin/components/hello-component.js
Component({
properties: {
items: {
type: Array,
value: [],
observer(newVal, oldVal, changedPath) {
this.setData({items: newVal})
}
}
},
data: {
items: []
},
methods: {
}
})