如何去掉vue路由地址中的#/

http://localhost:8081/#/
http://localhost:8081/#/home
http://localhost:8081/#/aboutUs
……
上面这样,每个地址中都有一个“#”,尤其是我这种处女座的帅男来讲,每次看到它我就全身不舒服。下面我给大家讲我是如何把它去掉的:

因为我们搭建的环境默认用的hash mode,如果要去掉#/,改成history模式就可以了,具体配置在router中添加一行 mode: 'history', 如下:

export default new Router({
mode: 'history',
...
})

如果你喜欢“#”就把mode: 'history' 这句代码去掉就可以了。

你可能感兴趣的:(如何去掉vue路由地址中的#/)