解决vue-router在3.0版本以上重复点菜单报错的问题

将一下代码复制到router下的index.js中,

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

如果改了的push还是没有生效,可以考虑改replace方法:

const originalReplace = VueRouter.prototype.replace;
VueRouter.prototype.replace = function replace(location) {
  return originalReplace.call(this, location).catch(err => err);
};