„Did you register the component correctly?”
See original GitHub issueHi!
I use your component and it works great, but I have an warn/error in browser console:
[Vue warn]: Unknown custom element: <vue-progress-bar>
- did you register the component correctly?
For recursive components, make sure to provide the "name" option.
(found in <App> at /Users/lukaszflorczak/Projekty/ns/src/App.vue)
What should I do?
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:8
Top Results From Across the Web
did you register the component correctly? For recursive ...
did you register the component correctly ? For recursive components, make sure to provide the "name" option · Ask Question. Asked 4 years,...
Read more >Did you register the component correctly? For recursive ...
Hello, i making a recursive thing an i get this error : [Vue warn]: Unknown custom element: <MultiPaneBox> - did you register the...
Read more >How to Solve "Unknown Custom Element" in Vue
[Vue warn]: Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the "name" option.
Read more >Solution to Vue.js Error - Unknown custom element - did you ...
I'm building a recursive Vue.js component and ran into this error: Unknown custom element: - did you register the component correctly?
Read more >[Vue warn]: Unknown custom element: <example-component>
[Vue warn]: Unknown custom element: <example-component> - did you register the component correctly?
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
i have same problem like u @JoshuaDoshua i already remove, reinstall and reconfigure but still give same error error : [Vue warn]: Unknown custom element: <vue-progress-bar> - did you register the component correctly? For recursive components, make sure to provide the “name” option.
my code : main.js import VueProgressBar from ‘vue-progressbar’ … onst options = { color: ‘#bffaf3’, failedColor: ‘#874b4b’, thickness: ‘5px’, transition: { speed: ‘0.2s’, opacity: ‘0.6s’, termination: 300 }, autoRevert: true, location: ‘left’, inverse: false } … Vue.use(BootstrapVue, VueProgressBar, options)
and App.vue
Are you sure that you register VueProgressBar before creating a Vue instance? Everything works fine for me
Something like that…
// register
Vue.use(VueProgressBar)
// create a root instance
new Vue({...})