[Vuejs]-Unable to async load vue component in nested folder

0👍

You have to import the component and register it in the page.vue, like this:

<script>
import MainContainer from "maincontainer's file path"

export default {
...
components: {
mainContainer: MainContainer
}
}
</script>

Leave a comment