[Vuejs]-Vue warn : Error in render: "TypeError: route is undefined"

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.

Leave a comment