解决ElementUI导航栏重复点菜单报错问题
Posted paperkite
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决ElementUI导航栏重复点菜单报错问题相关的知识,希望对你有一定的参考价值。
在router.js的配置文件中 添加如下代码:
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
其中, VueRouter为引入的vue-router的变量
以上是关于解决ElementUI导航栏重复点菜单报错问题的主要内容,如果未能解决你的问题,请参考以下文章
vue-router点击菜单栏同一个模块报错 ———— Uncaught(in promise) NavigationDuplicated error .......