美文网首页
Vue-router错误:Error: Avoided redu

Vue-router错误:Error: Avoided redu

作者: black墨 | 来源:发表于2022-02-11 15:21 被阅读0次

错误提示

引入ElementUI后,重复点击一个具有路由跳转功能的按钮会出现如下提示:
NavigationDuplicated: Avoided redundant navigation to current location:xxx


图片.png

解决方案

在router文件夹下面的index.js 中加入如下代码:

const vuePush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
  return vuePush.call(this, location).catch(err => err)
}

代码图解:


图片.png

相关文章

网友评论

      本文标题:Vue-router错误:Error: Avoided redu

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