21 lines
272 B
JavaScript
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: {
|
|
|
|
}
|
|
})
|