index.js 284 B

12345678910111213141516171819
  1. Component({
  2. externalClasses: ['l-class'],
  3. properties: {
  4. color: String,
  5. show: Boolean,
  6. type: {
  7. type: String,
  8. value: 'flash'
  9. },
  10. // 自定义
  11. custom: Boolean,
  12. size: {
  13. type: String,
  14. value: 'default',
  15. },
  16. },
  17. methods: {
  18. }
  19. });