经常遇到vue跳转当前路由报错,如下图:
router.js中增加下面代码:
const VueRouterPush = Router.prototype.push
Router.prototype.push = function push (to) {
return VueRouterPush.call(this, to).catch(err => err)
}
经常遇到vue跳转当前路由报错,如下图:
router.js中增加下面代码:
const VueRouterPush = Router.prototype.push
Router.prototype.push = function push (to) {
return VueRouterPush.call(this, to).catch(err => err)
}
本文标题:vue中解决跳转相同路由报错
本文链接:https://www.haomeiwen.com/subject/zcopgktx.html
网友评论