C端小程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

24 行
437 B

  1. Component({
  2. externalClasses: ['i-class'],
  3. properties: {
  4. // small || default || large
  5. size: {
  6. type: String,
  7. value: 'default'
  8. },
  9. fix: {
  10. type: Boolean,
  11. value: false
  12. },
  13. fullscreen: {
  14. type: Boolean,
  15. value: false
  16. },
  17. custom: {
  18. type: Boolean,
  19. value: false
  20. }
  21. }
  22. });