Element/vue router连续点击多次路由报错解决方法
作者:互联网
原文链接:https://blog.csdn.net/weixin_43202608/article/details/98884620
Element-ui 点击多次路由会报错:NavigationDuplicated {_name: “NavigationDuplicated”, name: “NavigationDuplicated”}
查找到了一篇比较好用的解决文章 (亲测有效), 方法如下↓
- 把项目依赖的 node_modules 文件夹删除, 然后再 npm install 重新下载依赖包就可以解决。
- 如果在重新下载依赖包时,安装的vue-router还是之前出错的那个版本,那么要怎么解决呢?解决方法也很简单,在项目目录下运行 npm i vue-router@3.0 -S 即可
- 如果不想换 vue-router 的版本 或者 还是 没有用,那么可以用以下方法
在main.js下添加一下代码:
import Router from 'vue-router'
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
标签:vue,Element,解决,NavigationDuplicated,报错,Router,push,router 来源: https://blog.csdn.net/qq_40282732/article/details/99693491