解决vue-router报NavigationDuplicated: Avoided redundant navigation to current location 的问题

解决vue-router报NavigationDuplicated: Avoided redundant navigation to current location 的问题

最近写项目的时候, 重复点击路由会在控制台报
这样的错误。


image

它的提示是 避免到当前位置的冗余导航。 简单来说就是重复触发了同一个路由。
这个错误是 vur-router更新以后新出现的错误。(我使用的是 vue-router 3.2.0)出现的 但是 (vue-router 3.0.6) 没有出现。 但是也不排除是我的 3.0.6之前做过配置。
解决这个错误也非常简单。只需要在router /index的页面里面 加入

const originalPush = VueRouter.prototype.push

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

这行代码就可以了
他的位置大概在这里


image.png

加上这个代码后 不报错了 但是依然 跳转不了

解决 最后看代码 发现 加上这个就可以了


你可能感兴趣的:(解决vue-router报NavigationDuplicated: Avoided redundant navigation to current location 的问题)