nebular icon indicating copy to clipboard operation
nebular copied to clipboard

new child route not working.

Open usmanshani92 opened this issue 3 years ago • 0 comments
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?

usmanshani92 avatar Jan 31 '22 13:01 usmanshani92