[Vuejs]-Unknown custom element when nesting components in Vue.js

3πŸ‘

βœ…

In the second exported object (the second script element that I assume is in another file other than App.vue, or maybe you are saying that is the version that will not work) there is no components definition. You need a components object member to register the nested component MenuHomeComponent like this.

<script>
    import MenuHomeComponent from './MenuHomeComponent'
    export default {
       components: { MenuHomeComponent }
    }
</script>
πŸ‘€SciGuyMcQ

Leave a comment