0π
β[Vue warn]: Unknown custom element: β did you register the component correctly? For recursive components, make sure to provide the βnameβ option.β
It occurs when components are not registered within the βapp.jsβ file. In the Vue instance, try adding this
new Vue({
components: {
appSome: some
}
});
Of course you also have to import the component.
Source:stackexchange.com