美文网首页
解决Vue-Router升级导致的Uncaught(in pro

解决Vue-Router升级导致的Uncaught(in pro

作者: Enginner_XZ | 来源:发表于2020-09-07 10:22 被阅读0次

    请将下面代码复制粘贴到路由文件内

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

    具体上图

    路由next重定向问题.png

    相关文章

      网友评论

          本文标题:解决Vue-Router升级导致的Uncaught(in pro

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