作为儿童路线的辅助路线

时间:2018-06-04 17:53:07

标签: angular angular-router angular6

是否可以在空路径上将辅助路线作为子路线?

当我导航到/path时,我似乎无法通过以下方式显示辅助路线。但是,如果我导航到/path(aux:aux),则会正确显示。

const routes: Routes = [
  {
    path: '',
    component: HomeComponent
  },
  {
    path: 'path',
    component: PathComponent,
    children: [
      {
        path: ''
        component: AuxComponent,
        outlet: 'aux',
      }
    ]
  },
  {
    path: 'aux',
    component: AuxComponent,
    outlet: 'aux'
  }
];

0 个答案:

没有答案