Answers for "vue # in url"

0

vue # in url

// To remove the # from url
// go in to router, index.js and change -->

const router = new VueRouter({
  routes
})

to const router = new VueRouter({
  routes,
  mode: 'history'
})
Posted by: Guest on March-26-2021

Browse Popular Code Answers by Language