欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Vue router报错:NavigationDuplicated {_name: "NavigationDuplicated", name: "NavigationDuplicated"}的解决方法

程序员文章站 2022-03-25 09:55:15
...

在使用Element UI 时点击同一个路由,控制台报错,但不影响使用
Vue router报错:NavigationDuplicated {_name: "NavigationDuplicated", name: "NavigationDuplicated"}的解决方法
解决方法如下:
在引用vue-router的文件中添加一段代码

const originalPush = Router.prototype.push;

Router.prototype.push = function push(location) {

    return originalPush.call(this, location).catch(err => err);

};
相关标签: VueRouter