index.js 397 B

1234567891011121314151617181920212223242526272829
  1. Component({
  2. options: {
  3. addGlobalClass: true
  4. },
  5. externalClasses: ['nav-width'],
  6. /**
  7. * 组件的属性列表
  8. */
  9. properties: {
  10. nav: Array,
  11. active: null
  12. },
  13. /**
  14. * 组件的初始数据
  15. */
  16. data: {},
  17. /**
  18. * 组件的方法列表
  19. */
  20. methods: {
  21. change(e) {
  22. const { item } = e.target.dataset
  23. this.triggerEvent('change', item)
  24. }
  25. }
  26. })