你需要开启HTML5 History 模式vue-router 默认 hash 模式 —— 使用 URL 的 hash 来模拟一个完整的 URL,于是当 URL 改变时,页面不会重新加载。如果不想要很丑的 hash,我们可以用路由的 history 模式,这种模式充分利用 history.pushState API 来完成 URL 跳转而无须重新加载页面。const router = new VueRouter({ mode: ‘history‘, routes: [...]}) 这种配置需要配合后端服务器的配置,如果你对服务器是nginxlocation / { try_files $uri $uri/ /index.html;}
时间: 2024-10-26 03:18:23