1π
β
In your router folder in index.js
add
import Vue from "vue";
import VueRouter from "vue-router";
Vue.use(VueRouter);
export default new Router({
//routes of components
})
And then in your main.js
remove
Vue.use(VueRouter);
Hope this will work.
Source:stackexchange.com