Хорошо, если я очень хорошо понимаю ваши вопросы.Это очень возможно в случае, когда у вас есть логин и панель инструментов, например
const routes: Routes = [
{
path: '',
pathMatch: 'prefix',
redirectTo: 'auth/login'
},
{
path: 'loading',
component: LoadingComponent
},
{
path: 'auth/login',
component: LoginComponent
},
{
path: 'auth/forgot-password',
component: ForgotPasswordComponent
},
{
path: 'auth/register',
component: RegisterComponent
},
{
path: 'auth/reset-password-temp',
component: ResetPasswordComponent
},
{
path: 'dashboard',
component: AdminComponent,
canActivate: [AuthGuard],
children: [
{
path: 'welcome',
component: WelcomeComponent
},
{
path: 'messages',
canActivate: [AuthGuard],
component: MessagesComponent
},
{
path: 'student-add',
component: StudentAddComponent
},
{
path: 'student-edit',
component: StudentEditComponent
},
{
path: 'student-view',
component: StudentViewComponent
}
]
}
];
@NgModule({
imports: [RouterModule.forRoot(routes, { useHash: true })],
exports: [RouterModule],
providers: []
})
export class RoutingModule {}
С каждым импортированным компонентом и правильный путь, ссылающийся на