Sunday, October 1, 2017

[ VueJs Solutions ] - How to remove # in url (Vue 2.0) ?

Problem -  http://localhost:8080/about#/



You want solution like this




Step to solve this issue-
 1. Open YourProjectDirectory/src/router/index.js
2.  place this code below above routes: [
      mode: 'history',

sample code- 

Vue.use(Router)

export default new Router({
  mode: 'history',
  routes: [
    {
      path: '/#',
      name: 'Hello',
      component: Hello
    },
    {
      path: '/about',
      name: 'about',
      component: about
    }
  ]

})




No comments:

Post a Comment