vue 存在路由重复跳转,会报错的问题:
加上以下代码,就能防止重复跳转
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
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
网友评论