现象
vue项目中,重复点击菜单报错,报错显示路由重复,对功能没有影响。
vue-router.esm.js:1958 Uncaught (in promise) Error: Navigation cancelled from "/virtualPlant" to "/hydroPowerList" with a new navigation.
解决方案
router 文件下 index.js 中添加下面代码即可
import VueRouter from "vue-router";
Vue.use(VueRouter);
//解决vue-router重复点菜单报错问题
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}