前端开发

vue路由重复跳转问题

2020-09-09  本文已影响0人  Spinach

vue 存在路由重复跳转,会报错的问题:
加上以下代码,就能防止重复跳转

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

猜你喜欢

热点阅读