去除Vue URL 中的#号 LiamGK 2020-02-03 2,084 阅读1分钟 去除 URL 中的#号需要使用 vue-router 的 history.pushState,在 new vue-router 实例的时候配置。 const router = new VueRouter({ mode: 'history', routes: [...] }) 由于,vue 是单页面应用,如果服务器上没有静态资源能匹配用户的请求则,服务端需要配置所有连接都跳转到 vue 项目的主页面如 index.html