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