Vue报错:Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation to current location

错误原因,我猜测多半是版本问题

image

router/index.js中添加如下代码

const originalPush = VueRouter.prototype.push

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

如下所示:
image

至此问题解决

posted @ 2021-10-26 20:12  胸怀丶若谷  阅读(289)  评论(0编辑  收藏  举报