美文网首页前端开发
vue路由重复跳转问题

vue路由重复跳转问题

作者: Spinach | 来源:发表于2020-09-09 09:03 被阅读0次

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

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

相关文章

网友评论

    本文标题:vue路由重复跳转问题

    本文链接:https://www.haomeiwen.com/subject/ewpuektx.html