index.js 222 B

1234567891011121314
  1. Component({
  2. properties: {
  3. list: Array,
  4. onClick: Function
  5. },
  6. methods: {
  7. handleClick(e) {
  8. const {
  9. item
  10. } = e.currentTarget.dataset;
  11. this.triggerEvent("onClick", item)
  12. },
  13. }
  14. })