Hey,

*I have a module with child routes working like this:*
const appRoutes: Routes = [ 
 { path: '', redirectTo: 'login', pathMatch: 'full'},
 { path: 'login', component: BackendLoginComponent }, 
];

@NgModule({
imports: [RouterModule.forChild(appRoutes)],
exports: [RouterModule]
})

*defined as child module with children routes in main routing module in 
app.module like this:*
const appRoutes: Routes = [
{ path: '', component: HomepageComponent},
{ path: 'backend', loadChildren: 'app/backend/backend.module#BackendModule' 
}
];

@NgModule({
imports: [RouterModule.forRoot(appRoutes)],
exports: [RouterModule]
})

I want to assign a 'BackendBaseComponent' to my 'backend' child module, 
which would be shown on every single 'backend' subpage.
So basically my Idea is to add some sort of <root-children-outlet></...> 
into BackendBaseComponent and assign it to BackendModule as default 
rendering outlet for these child routes.

is that at all possible or is there any other way to do this?

thanks

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to