index.js 495 B

12345678910111213141516171819202122232425262728293031323334
  1. // components/My_GreyRectangle/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. /* 标题 */
  8. title: {
  9. type: String,
  10. value: "title"
  11. },
  12. /* 是否必填 */
  13. required: {
  14. type: Boolean
  15. }
  16. },
  17. options: {
  18. addGlobalClass: true,
  19. },
  20. /**
  21. * 组件的初始数据
  22. */
  23. data: {
  24. },
  25. /**
  26. * 组件的方法列表
  27. */
  28. methods: {
  29. }
  30. })