Child Routes in Angular — a practical guide to Angular child routes with clear examples you can reuse in real projects.
Angular Tutorial Series (44/119). Prefer one article? Read the complete Angular tutorial.
Short description
Index routes fill the parent outlet by default.
Children sketch
{
path: 'admin',
component: AdminLayoutComponent,
children: [
{ path: '', component: AdminHomeComponent },
{ path: 'users', component: UsersComponent },
],
}