美文网首页
Vue router报错:NavigationDuplicate

Vue router报错:NavigationDuplicate

作者: 御用闲人豪 | 来源:发表于2019-10-20 08:53 被阅读0次

在使用Element UI 时点击同一个路由,控制台报错,但不影响使用


20190910094554144.png

解决方法如下:
在引用vue-router的文件中添加一段代码

const originalPush = Router.prototype.push;

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

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

};

相关文章

网友评论

      本文标题:Vue router报错:NavigationDuplicate

      本文链接:https://www.haomeiwen.com/subject/suyomctx.html