C端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
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. });