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

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

作者: 程序媛可可 | 来源:发表于2020-09-06 13:16 被阅读0次

    解决Vue-Router升级导致的Uncaught(in promise) navigation guard问题

    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)

    }

    相关文章

      网友评论

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

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