Default to use PascalCase instead of kebab-case since vue supports resolving both kebab-case and PascalCase to it's registered PascalCase components:
Luckily, Vue supports resolving kebab-case tags to components registered using PascalCase. This means a component registered as MyComponent can be referenced in the template via both and . This allows us to use the same JavaScript component registration code regardless of template source.
Describe alternatives you've considered
I guess there could be some changes made to the enums file. But I also guess it's related to the variants configuration.
Is your feature request related to a problem? Please describe.
What the title says. I get the impression that this component library enforces kebab-case for all its components. The official Vue documentation recommends using PascalCase for all components: https://vuejs.org/guide/components/registration.html#component-name-casing
Describe the solution you'd like
Default to use PascalCase instead of kebab-case since vue supports resolving both kebab-case and PascalCase to it's registered PascalCase components:
Describe alternatives you've considered
I guess there could be some changes made to the enums file. But I also guess it's related to the variants configuration.