Error: Avoided redundant navigation to current location ElementUI导航栏重复点菜单报错的解决办法:
首先打开我们的路由配置文件,ranhu就可以解决了。
import Vue from 'vue';
import Router from 'vue-router';
Vue.use(Router);
// 解决ElementUI导航栏中的vue-router在3.0版本以上重复点菜单报错问题
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
如果修改了push还是没有生效,那么可以尝试replace方法,例如:
const originalReplace = Router.prototype.replace;
Router.prototype.replace = function replace(location) {
return originalReplace.call(this, location).catch(err => err);
};
3 comments
前辈能说说为什么修改成replace就行了吗?
感谢,好兄弟
GET IT,3Q