[Vuejs]-Vue error when run my code: unknown custom element

0👍

If you’re using a component within a component (it’s like DOM) than you have to register these components global:

like for example:

vue.component("MyComponent", MyComponent)

This should solve your problem!

Leave a comment