Vue-router报错 Avoided redundant navigation to current... 解决问题
在vue项目中路由跳转过程中浏览器会报Avoided redundant navigation to current location 这个错误,解决方法:在路由文件里添加这一句可解决报错问题const originalPush = VueRouter.prototype.pushVueRouter.prototype.push = function push(location) {return
·
在vue项目中路由跳转过程中浏览器会报Avoided redundant navigation to current location 这个错误,
解决方法:在路由文件里添加这一句可解决报错问题
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
更多推荐
已为社区贡献3条内容
所有评论(0)