angular CLI を使用して小さなプロジェクトを作成しましたが、CLI でデフォルト ルートを宣言する方法がわかりません。親コンポーネントに「/」を使用しましたが、機能しますが、子コンポーネントに「/」を使用すると機能しません。
私のparent.component.tsは次のとおりです。
@Routes([
{ path: '/', component: LoginComponent },
])
parent.component.htmlは次のとおりです。
<a [routerLink]="['/Login']"></a>
<router-outlet></router-outlet>
child.component.tsは次のとおりです。
@Routes([
{ path: '/', component: DashboardComponent},
])
child.component.htmlは次のとおりです。
<li class="treeview">
<a [routerLink]="['']">Dashboard</a>
</li>
<router-outlet></router-outlet>
この方法は親と子の両方で機能しますが、デフォルトで「/dashboard」などの別のパスを持つルートが必要です。子コンポーネントでデフォルト ルートを定義する方法はありますか。