美文网首页
vue打包后index访问的是首页,而非登录页面

vue打包后index访问的是首页,而非登录页面

作者: Amom_dong | 来源:发表于2018-07-18 17:40 被阅读0次

今天vue打包文件遇到的问题:

vue打包后index访问的是首页,而非登录页面,在对router.beforeEach做了全局路由配置

排查各种原因。。。最后发现是router里模式配置成了history模式

let router = new Router({

  saveScrollPosition: true,

  scrollBehavior: () => ({

    y: 0

  }),

  mode: 'hash'

});

修改history为hash后访问正确。

相关文章

网友评论

      本文标题:vue打包后index访问的是首页,而非登录页面

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