elemetn-ui导航栏重复点击出现冗余错误的问题

378 阅读1分钟

在router的index。js里加入

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