vue-router 去掉#
Posted carriezhao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-router 去掉#相关的知识,希望对你有一定的参考价值。
vue-router 默认的路由模式是hash,我们要去掉url中的#需要将路由模式切换为history
const router = new VueRouter({ mode : ‘history‘ });
至于去掉#之后会产生什么问题,可以参考这篇内容:
https://www.cnblogs.com/hanshuai/p/9930063.html
以上是关于vue-router 去掉#的主要内容,如果未能解决你的问题,请参考以下文章