hello-component.js 272 B

1234567891011121314151617181920
  1. // plugin/components/hello-component.js
  2. Component({
  3. properties: {
  4. items: {
  5. type: Array,
  6. value: [],
  7. observer(newVal, oldVal, changedPath) {
  8. this.setData({items: newVal})
  9. }
  10. }
  11. },
  12. data: {
  13. items: []
  14. },
  15. methods: {
  16. }
  17. })