子路由是动态的,以前我是写死默认第一个,现在是 children 里面是动态的 我怎么吧 子路由第一个设置为默认路由呢?
const routes=[
{
path:'/',
name:'index',
component:App,
redirect:'/forecastInfo',
children:[
{
path:'basicInfo',
component:BasicInfo
},
{
path:'forecastInfo',
component:ForecastInfo
},
]
},{
path:'*',
redirect:'/'
}
];
2 回答978 阅读✓ 已解决
1 回答1.1k 阅读
1 回答999 阅读
688 阅读
671 阅读
234 阅读
可以把你想要得那个子路由的path:'',设置为这样