在我的路由器配置中,我DashboardComponent
在路径下配置了一个'dashboard'
,我想在未指定路径时自动将用户重定向到此路由(空路径,所以只是/
)。
这是我的代码:
const appRoutes: Routes = [
{ path: '', redirectTo: 'dashboard'},
{ path: 'dashboard', component: DashboardComponent },
/* other routes... */
];
未处理的承诺拒绝:路由'{path:“”,redirectTo:“dashboard”}'的配置无效:请提供'pathMatch'。'pathMatch' 的默认值是 'prefix',但通常意图是使用 'full'