blockList.js 338 B

123456789101112131415161718192021222324252627282930313233
  1. Component({
  2. /**
  3. * 组件的属性列表
  4. */
  5. properties: {
  6. special_datas:{
  7. type:Object
  8. },
  9. summery:{
  10. type:Array
  11. },
  12. prop_special:{
  13. type:Array
  14. }
  15. },
  16. /**
  17. * 组件的初始数据
  18. */
  19. data: {
  20. },
  21. attached() {
  22. },
  23. /**
  24. * 组件的方法列表
  25. */
  26. methods: {
  27. }
  28. })