今天遇到了一个bug,这个bug出现并没有对页面展示有所干扰,但是看到控制台报错,很不爽,所以查了下问题,发现它是由于路由导航冗余报错也就是路由重复导致的,网上的解决方案大同小异,下面是我的解决办法。
1、找到你项目里的 router文件夹下的index.js,然后将下面的代码添加到里面
2、添加代码
import Vue from 'vue';
import Router from 'vue-router';
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
然后回到浏览器的控制台中,你就会发现,此问题不见啦