Questions tagged [routeparams]

No instructions have been provided for utilizing this tag … at the moment!

Issue with Angular Router: unable to retrieve route parameters in child paths

Within our main app.component routing, we have the following setup: { path: 'store', loadChildren: './store/store.module#StoreModule', canActivate: [LoginGuard] }, Then, in the module, our routes are defined as follows: const routes: Routes = [ { pat ...