new router({
routes:[
{
path: ‘/‘,
conponent: home,
name: ‘Home‘,
alias: ‘/index‘
},{
path: ‘/about‘,
conponent: about,
name: ‘About‘,
},{
path: ‘/document‘,
conponent: document,
name: ‘Document‘,
},{
path: ‘*‘,
// redirect: home 组件方式重定向
// redirect: ‘Home‘ 别名方式重定向
// redirect: ‘/‘
//redirect (to) =>{
if(to.path===‘/123‘){
to.path=‘/‘
}else{
to.path=‘/about‘
}
}
},
]
})
时间: 2024-12-09 19:07:03