nebular
nebular copied to clipboard
new child route not working.
trafficstars
{ path: 'auth', component: NbAuthComponent, children: [ { path: '', component: LoginComponent, }, { path: 'login', component: LoginComponent, }, { path: 'posretail', component: PosRetailComponent, },
],
},
{ path: '', redirectTo: 'auth/login', pathMatch: 'full' }, { path: '**', redirectTo: 'auth/login' },
when I enter url http://localhost:4200/auth/posretail its not route to PosRetailComponent?