Есть несколько маршрутов для одного и того же компонента, роутер-розетка обновляется отлично. По умолчанию график не загружался и при нажатии на боковую панель также не минимизируется
Но когда я обновлю URL, тогда будет загружен только график панели? Это почему?
my homepage.html:
<div class="nav-commands">
<a [routerLink]="['home/dashboard']">People</a>
<a [routerLink]="['home/second']">Second</a>
<a [routerLink]="['home/third']">third</a>
<a [routerLink]="['home/forth']">forth</a>
<a [routerLink]="['home/fifth']">fifth</a>
</div>
</div>
<div class="contenttext">
<router-outlet></router-outlet>
</div>
my app.route.module.ts:
{ path: 'home', component: HomeComponent,
children:[
{ path: '', redirectTo: 'dashboard', pathMatch: 'full' },
{ path: 'dashboard', component: DashboardComponent,},
{ path: 'second', component: SecondComponent,},
{ path: 'third', component: ThirdComponent,},
{ path: 'fourth', component: FourthComponent,},
{ path: 'fifth', component: FifthTaskComponent,},
]}