vue路由解决Uncaught (in promise) NavigationDuplicated: Avoided redundant navigation to current location: "/schemaManage/".的问题

这个报错不会影响页面效果

在 router的index.js里面添加

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)
}
原文地址:https://www.cnblogs.com/xiebeibei/p/13751018.html