swipescreen-item.ts 341 B

1234567891011121314151617181920212223242526
  1. // components/swipescreen/swipescreen-item.ts
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {},
  7. options: {
  8. multipleSlots: true,
  9. },
  10. relations: {
  11. './swipescreen': {
  12. type: 'parent',
  13. },
  14. },
  15. /**
  16. * 组件的初始数据
  17. */
  18. data: {},
  19. /**
  20. * 组件的方法列表
  21. */
  22. methods: {},
  23. })