消除Vue重复路由报错
作者:互联网
在VUE中路由遇到Error: Avoided redundant navigation to current location:报错显示是路由重复
在router文件夹下的index.js中加入如下代码,错误消失
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
标签:Vue,报错,location,VueRouter,push,prototype,路由,originalPush 来源: https://www.cnblogs.com/xiaobo95/p/16633391.html