美文网首页
vue刷新重定向某个页面(解决Uncaught (in prom

vue刷新重定向某个页面(解决Uncaught (in prom

作者: 一包 | 来源:发表于2019-12-10 20:48 被阅读0次
    • 在App.vue中加入
    created() {
        if (this.$router.path !== "/home" || this.$router.path !== "/") {
          this.$router.replace("/");
        }
      }
    
    • 但是不知道为啥会有一个报错,但不影响项目运行


    bug是因为vue有bug 解决:

    npm i vue-router@3.0 -S
    

    参考:https://blog.csdn.net/Oralinge/article/details/100546903

    相关文章

      网友评论

          本文标题:vue刷新重定向某个页面(解决Uncaught (in prom

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