我正在使用此代码进行路由
/dashboard
当网址为/dashboard/first...
时,我需要将其路由到<ion-input type="number" [(ngModel)]="value"></ion-input>
{{value}}
我怎样才能实现它?
答案 0 :(得分:5)
您已经在Dashboard
组件中。仅使用first
,而不是dashboard/first
。
{ path: '', children: [
{ path: '', component:DashboardComponent ,
children:[
{ path: '', redirectTo:'first',pathMatch:'full' },
{ path: 'first', component: FirstComponent },
{ path: 'second', component: SecondComponent },
]
},
]},