[Vuejs]-The '#' in my url is not right when I use vue-router with express

0👍

Try setting the mode: 'history' in your VueRouter

const router = new VueRouter({
  mode: 'history',
  routes: [...]
})

For more info also with express, refer to Vue Router HTML5 history mdoe

Leave a comment