vue-router路径上带井号解决
出现这种情况的原因,是因为vue-router为了让url变化,页面不刷新,使用了location.hash(),解决办法:在newvue-router的时候传入一个mode: ‘history’export default new Router({routes: [{path: '',redirect: '/home'}],## mode: 'history'})这样是就使用H5的histo.
·
出现这种情况的原因,是因为vue-router为了让url变化,页面不刷新,使用了location.hash(),
解决办法:在new vue-router的时候传入一个mode: ‘history’
export default new Router({
routes: [{
path: '',
redirect: '/home'
}
],
## mode: 'history'
})
这样是就使用H5的history模式了,就不会出现#号了
更多推荐
已为社区贡献5条内容
所有评论(0)