角度4相同的路线不同的组件与卫兵

时间:2018-05-28 13:56:11

标签: angular angular-ui-router

我只是问自己如何实现它,当我有1个路由,2个布局导致相同的组件?

这是我的路线:

{
  path: '',
    component: HomeLayoutComponent,
      canActivate: [NoneUserGuard],
        children: [
          { path: 'a', component: aComponent }
        ]
}, {
  path: '',
    component: LoginLayoutComponent,
      canActivate: [UserAuthGuard],
        children: [
          { path: 'a', component: aComponent }
        ]
},
{ path: '**', redirectTo: 'a' }

0 个答案:

没有答案