Describe the bug
Imagining having a component called HLViewer.vue in your code base. I was expecting to use it as <HLViewer/> in my project. Unfortunately, only <HlViewer /> (with a lowercase l) is available.
If this is intended (or at least a smaller pain than alternatives) I'd suggest adding a note in the docs, possibly in a caveats section.
To Reproduce
Steps to reproduce the behavior:
yarn create nuxt-app rm-test-components
- Select whatever you like
- Create a new component, e.g.
ABCde.vue
- Add it to a page as
<ABCde>
- See "not defined" error in the console
Expected behavior
Component is registered correctly.