如何#!从 url 中删除 hashbang?
#!
我在 vue 路由器文档( http://vuejs.github.io/vue- router/en/options.html )中找到了禁用 hashbang 的选项,但是这个选项被删除#!了,只是把#
#
有什么办法可以让网址干净吗?
例子:
不是:#!/home
#!/home
但:/home
/home
谢谢!
您实际上只想设置mode为'history'.
mode
'history'
const router = new VueRouter({ mode: 'history' })
不过,请确保您的服务器已配置为处理这些链接。 https://router.vuejs.org/guide/essentials/history- mode.html