vue-router 去掉#
时间:2019-02-18 22:39:45
收藏:0
阅读:460
vue-router 默认的路由模式是hash,我们要去掉url中的#需要将路由模式切换为history
const router = new VueRouter({ mode : ‘history‘ });
至于去掉#之后会产生什么问题,可以参考这篇内容:
https://www.cnblogs.com/hanshuai/p/9930063.html
原文:https://www.cnblogs.com/carriezhao/p/10398315.html
评论(0)