路由的属性mode的应用
mode有两个值:
1.history::当你使用 history 模式时,URL 就像正常的 url,例如 http://localhost:8080/gotu,也好看!
2.hash: :默认’hash’值,但是hash看起来就像无意义的字符排列,例如http://localhost:8080/#/gotu
在router/index.js文件中
export default new Router({
mode: 'history',//添加mode模式
routes: [
{
path: '/',
name: 'HelloWorld',
component: resolve => require(['@/components/HelloWorld'], resolve)
},
{
path: '/page1',
name: 'Page1',
component: resolve => require(['@/components/Page1'], resolve)
}
]
})