Vue---路由重复点击报错

router/index.js加入下面代码

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

猜你喜欢

转载自blog.csdn.net/qq_39115469/article/details/108887879