Open pisandelli opened 2 years ago
It would be better if the router uses the HTML5 mode, without the hash in URL. Example:
export default Promise.all(routes).then(routes => { const router = createRouter({ // history: createWebHashHistory(), history: createWebHistory(), routes }) router.beforeEach(setMiddlewares) return router })
I just made this PR for this.
It would be better if the router uses the HTML5 mode, without the hash in URL. Example: