美文网首页
vue-router在3.0版本以上element ui导航栏重

vue-router在3.0版本以上element ui导航栏重

作者: 雨落倾城夏微凉_e861 | 来源:发表于2020-09-10 14:27 被阅读0次

    第一种方法:
    在路由的index.js文件中添加如下代码:

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

    第二种方法:
    将vue-router的版本降到3.0

    yarn add vue-router@3.0
    

    两种方法都可以解决报错的问题.

    相关文章

      网友评论

          本文标题:vue-router在3.0版本以上element ui导航栏重

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