Error: Avoided redundant navigation to current location: 的错

错误:在VUE中路由遇到Error: Avoided redundant navigation to current location:报错显示是路由重复

解决办法:

在引入router时,加上

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

具体加入的位置:router.js

Error: Avoided redundant navigation to current location: 的错_第1张图片

如果是使用VueRouter,就在引入VueRouter的时候再加上

你可能感兴趣的:(Error: Avoided redundant navigation to current location: 的错)