组件TwoComponent
显示在常规router-outlet
内,并在其模板中命名为router-outlet
。我正在使用以下代码来显示子路由(以类似于regular outlets
的方式使用),但它不起作用。
{
path: 'two',
component: TwoComponent,
outlet: 'named',
children: [
{
path: 'child',
component: TwoChildComponent
}
]
}
请查看此plunkr https://embed.plnkr.co/m1zkHVIfIvDzL6a5PfBB/
答案 0 :(得分:1)