vue-router在3.0版本以上重复点菜单报错问题

803 阅读1分钟

现象

vue项目中,重复点击菜单报错,报错显示路由重复,对功能没有影响。

vue-router.esm.js:1958 Uncaught (in promise) Error: Navigation cancelled from "/virtualPlant" to "/hydroPowerList" with a new navigation.

image.png

解决方案

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)
}