Problem - http://localhost:8080/about#/
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
}
]
})
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