0👍
In your route configuration, set the mode
to history.
mode: "history"
like:
const router = new VueRouter({
mode: "history",
routes: [
// ...
]
})
- [Vuejs]-Using prerender-spa-plugin with Laravel Vue.js in the resources directory
- [Vuejs]-Why do processes not work for me the second time with vue?
Source:stackexchange.com