美文网首页
vue中解决跳转相同路由报错

vue中解决跳转相同路由报错

作者: 明眸yh | 来源:发表于2020-12-24 13:11 被阅读0次

    经常遇到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