Вы можете добиться того же, используя следующий способ
app.routing.ts
const routes: Routes = [
{
path: '',
loadChildren:
'./home/home.module#HomeModule'
},
{
path: '',
loadChildren:'./another/another.module#AnotherModule'
}
];
А в домашнем модуле роутер
const routes: Routes = [
{
path: '',
component: LayoutComponent,
children: [
{
path: '',
component: HomeComponent,
},
{
path: 'other',
component: otherComponent,
},
]
}
];