当前位置: 首页 > news >正文

解决ElementUI导航栏重复点菜单报错问题

在使用ElementUI中的导航时,默认情况下如果重复点击某选项,会报错。

element-ui.common.js?b705:3354 Error: Avoided redundant navigation to current location: “/home/home1”.
at createRouterError (vue-router.esm.js?8c4f:2060)
at createNavigationDuplicatedError (vue-router.esm.js?8c4f:2033)
at HashHistory.confirmTransition (vue-router.esm.js?8c4f:2182)
at HashHistory.transitionTo (vue-router.esm.js?8c4f:2123)
at HashHistory.push (vue-router.esm.js?8c4f:2582)
at VueRouter.push (vue-router.esm.js?8c4f:2903)
at VueComponent.routeToItem (element-ui.common.js?b705:3381)
at VueComponent.handleItemClick (element-ui.common.js?b705:3348)
at invokeWithErrorHandling (vue.runtime.esm.js?2b0e:1854)
at VueComponent.Vue.$emit (vue.runtime.esm.js?2b0e:3888)

在这里插入图片描述
可以在router的配置文件中(router -> index.js)加上下面这句话,注意位置:

// 解决ElementUI导航栏中的vue-router在3.0版本以上重复点菜单报错问题
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}

相关文章:

  • 网站站外推广方法/爱站权重查询
  • 网站如何设置滚动页面/发广告去哪个平台
  • 网站开发网上悼念/怎么推广网页
  • 哪家企业网站做的好/谷歌seo和百度区别
  • dede网站模板页在什么文件夹/如何做网络营销
  • 昆明建站网站资讯平台/本地广告推广平台哪个好
  • 3422. 左孩子右兄弟
  • 1-Node.js简单介绍
  • 汇编Assembly
  • vite学习笔记
  • Go 内存管理,内存分配
  • 数据结构(5) treap
  • docker-14-容器化安装Linux并查看系统版本
  • 百度安全在线查询提示风险原因分析与解决思路
  • 车载以太网 - 车辆信息和车辆声明 - 09
  • CSRF(跨站请求伪造)
  • 用开放、安全的DDS变革数据的分发
  • 从零开始 verilog 以太网交换机(二)MAC接收控制器的设计与实现