2
我現在已經有些路線如何讓父狀態激活(即,添加活動類)當孩子主動
<ul class="">
<li class="">
<a [routerLinkActive]="['active']"
[routerLink]="['/user/traffic/graph']" class="">
Traffic
</a>
</li>
</ul>
路線
const trafficRoutes: Routes = [
{
path: '', component: TrafficComponent, children: [
{ path: '', redirectTo: 'graph' },
{ path: 'graph', component: GraphComponent},
{ path: 'alerts', component: AlertComponent}
]
},
];
路由器鏈路被激活,當我瀏覽到GraphComponent
但是當我導航到AlertComponent
時,它不是活動的。
我想使路由器鏈路處於活動狀態。即使我導航到AlertComponent
如何實現這一目標?