[Vuejs]-Routing to localhost:8081/home not working but localhost:8081/#/home working

0👍

This is because you have not enabled history mode, you can enable history mode by something like this

new Router({
  mode: 'history',
  routes,
  base: process.env.BASE_URL
})

Leave a comment