在指定插座内的常规插座

时间:2016-12-26 12:12:33

标签: angular angular2-routing

组件TwoComponent显示在常规router-outlet内,并在其模板中命名为router-outlet。我正在使用以下代码来显示子路由(以类似于regular outlets的方式使用),但它不起作用。

 { 
    path: 'two', 
    component: TwoComponent, 
    outlet: 'named',
    children: [
      {
        path: 'child',
        component: TwoChildComponent       
      }
    ]
  }

请查看此plunkr https://embed.plnkr.co/m1zkHVIfIvDzL6a5PfBB/

1 个答案:

答案 0 :(得分:1)

我想这应该对你有用

[routerLink]="[{ outlets: { named: 'two/child' } }]"

只需删除方括号即可。

更新了 plunker