项目中控制台刷新页面时报错 Error: Avoided redundant navigation to current location: “/xxx”.
在网上找的解决方法,在router.js下加上:
// 解决ElementUI导航栏中的vue-router在3.0版本以上重复点菜单报错问题
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push (location) {
return originalPush.call(this, location).catch(err => err)
}
无脑粘贴上以后发现并没有解救问题,后发现项目中用的路由跳转是replace,在原来的基础上修改:
const originalReplace = Router.prototype.replace
Router.prototype.replace = function replace (location) {
return originalReplace.call(this, location).catch(err => err)
}
报错解决。