vue后台管理,多次点击导航,出现的错误

151 阅读1分钟

在router修改,添加此代码

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