index.js 479 B

1234567891011121314151617181920212223242526272829303132
  1. // components/My_RectangularFrame/index.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. /* 上外边距 */
  8. marTop:{
  9. type:Number,
  10. value:'76'
  11. },
  12. /* 标题 */
  13. title:{
  14. type:String,
  15. value:"欢迎进入布万家"
  16. }
  17. },
  18. /**
  19. * 组件的初始数据
  20. */
  21. data: {
  22. },
  23. /**
  24. * 组件的方法列表
  25. */
  26. methods: {
  27. }
  28. })