[Vuejs]-[Vue warn]: Unknown custom element: <router-view>, possibly module conflict?

0👍

The problem here is that you were registering the router to another instance of vue and that instance does not have the main component. Here is the solution In your router/index.js remove the lines

 import VueRouter from 'vue-router';
 Vue.use(Router)

and in your main.js add these lines

 import VueRouter from 'vue-router';
 Vue.use(Router)

You check it here
https://codesandbox.io/s/lively-voice-1dutp

Leave a comment