import Router from 'vue-router' import router from "./index" // 解决ElementUI导航栏中的vue-router在3.0版本以上重复点菜单报错问题 const originalPush = Router.prototype.push Router.prototype.push = function push(location) { return originalPush.call(this, location).catch(err => err) } // const disabledRoutes = ['modelLibrary']; /* router.beforeEach((to, from, next) => { // console.log(to); // next(); if (disabledRoutes.includes(to.name)) { next(false); } else { next(); } }); */