Is your feature request related to a problem?
Yes. Currently the imported components are Carousel and Slide, which are single-word component names. This goes against Vue's recommendations on naming components (which itself is derived from the fact that custom elements should always be kabab-case, and thus two words to distinguish them from one-word native elements)
Describe the solution you'd like
Consider changing Carousel and Slide to CarouselWrapper and CarouselSlide
If any, describe the alternatives you've considered
Any other name will also do. Main thing is ensuring consistency and avoiding one word and overly generic component names.
Teachability, Documentation, Adoption, Migration Strategy
N/A, though I appreciate this would be a massively breaking change
P.S. Thanks for creating this plugin - just came across it and it's a nice, neat, simple setup.
Is your feature request related to a problem? Yes. Currently the imported components are
Carousel
andSlide
, which are single-word component names. This goes against Vue's recommendations on naming components (which itself is derived from the fact that custom elements should always be kabab-case, and thus two words to distinguish them from one-word native elements)Describe the solution you'd like Consider changing
Carousel
andSlide
toCarouselWrapper
andCarouselSlide
If any, describe the alternatives you've considered Any other name will also do. Main thing is ensuring consistency and avoiding one word and overly generic component names.
Teachability, Documentation, Adoption, Migration Strategy N/A, though I appreciate this would be a massively breaking change
P.S. Thanks for creating this plugin - just came across it and it's a nice, neat, simple setup.