index.js 389 B

1234567891011121314151617181920212223242526272829
  1. // components/My_VerticalBox/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. list: {
  8. type: Array
  9. },
  10. pageType: {
  11. type: String,
  12. value: 'home'
  13. }
  14. },
  15. /**
  16. * 组件的初始数据
  17. */
  18. data: {
  19. },
  20. /**
  21. * 组件的方法列表
  22. */
  23. methods: {
  24. }
  25. })