在使用Element UI 时点击同一个路由,控制台报错,但不影响使用
在这里插入图片描述
解决方法如下:
在引用vue-router的文件中添加一段代码

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

注:Element UI ^2.13.0 版本已修复该问题

Logo

前往低代码交流专区

更多推荐