美文网首页
点击进入另外一个页面时,路由重复

点击进入另外一个页面时,路由重复

作者: 执念_6afc | 来源:发表于2019-11-19 16:14 被阅读0次

    论坛进入user页中时,会跳入到localhost:8080/user/user/{id}中,解决办法:

    import vueRouter from 'vue-router'
    
    const originalPush = vueRouter.prototype.push;
    vueRouter.prototype.push = function push(location) {
      return originalPush.call(this, location).catch(err => err);
    }
    

    vueRouter为自定义的名字

    相关文章

      网友评论

          本文标题:点击进入另外一个页面时,路由重复

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