homeThree.js 306 B

12345678910111213141516171819202122232425262728
  1. // components/blocks/home3/home3.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. items: {
  8. type: Array
  9. },
  10. specialData:{
  11. type: Object
  12. }
  13. },
  14. /**
  15. * 组件的初始数据
  16. */
  17. data: {
  18. },
  19. /**
  20. * 组件的方法列表
  21. */
  22. methods: {
  23. }
  24. })