214  
查询码:00000948
关于VUE项目中左侧菜单连续点击报Error: Avoided redundant navigation to current location: 的错
作者: 陈婉 于 2020年06月15日 发布在分类 / 人防组 / 人防前端 下,并于 2020年06月15日 编辑
vue

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

粘贴图片

虽然对项目无影响,但是看到有红的还是不舒服。

于是查了一下发现可以这样解决

router文件夹下面的index.js中加上下面几句代码

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

粘贴图片




 推荐知识

 历史版本

修改日期 修改人 备注
2020-06-15 13:47:32[当前版本] 陈婉 格式调整
2020-06-15 13:40:10 陈婉 创建版本

 附件

附件类型

PNGPNG

知识分享平台 -V 4.8.7 -wcp