美文网首页VUE
解决ElementUI导航栏重复点菜单报错问题

解决ElementUI导航栏重复点菜单报错问题

作者: 一只菜鸟正在脱毛 | 来源:发表于2020-06-12 15:11 被阅读0次
image.png

在VUE中路由遇到Error: Avoided redundant navigation to current location:报错显示是路由重复,
虽然对项目无影响,但是看到有红的还是不舒服。
于是查了一下发现可以这样解决
在你引入VueRouter的时候再加上一句话:

// 解决ElementUI导航栏中的vue-router在3.0版本以上重复点菜单报错问题
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}

参考链接:https://www.cnblogs.com/xinheng/p/13019818.html

相关文章

网友评论

    本文标题:解决ElementUI导航栏重复点菜单报错问题

    本文链接:https://www.haomeiwen.com/subject/nhagtktx.html