环境
-
laradock
-
@vue/cli 4.5.4
问题
- 启动 vue 项目
$ yarn serve
2020-09-16_5f6177d2a45f7.png
- 访问
首次访问 http://localhost:8080/admin-dev/ ,正常。
- 刷新
刷新后,404。
解决
- 修改 src/router/index.js
const router = new VueRouter({
mode: 'hash'
})
这种情况应该是前端路由模式使用了
history
模式,将前端路由模式设置为hash
模式,刷新就不会404了。
- 再次刷新
再次刷新后,可以正常访问。
网友评论