unplugin / unplugin-vue-components

📲 On-demand components auto importing for Vue
https://www.npmjs.com/package/unplugin-vue-components
MIT License
3.66k stars 341 forks source link

custom component can't use kabab case #706

Open neozo opened 9 months ago

neozo commented 9 months ago

custom component can't use kabab case , capital case is work fine.

<HelloWorld> work fine <hello-world> some error

Any options can resovle the problem?

neozo commented 9 months ago

the problem resovled, component ref use the same name with the component will make some error, but why?? <hello-world ref="helloWorldRef"> well done <hello-world ref="helloWorld"> error

image