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
Source:stackexchange.com