index.js 397 B

12345678910111213141516171819202122
  1. import '../_util/assert-component2';
  2. Component({
  3. properties: {
  4. type: {
  5. value: '',
  6. type: String,
  7. },
  8. color: {
  9. type: String,
  10. },
  11. style: {
  12. type: String,
  13. },
  14. className: {
  15. type: String,
  16. },
  17. },
  18. options: {
  19. //@ts-ignore
  20. styleIsolation: 'shared',
  21. },
  22. });