Add route for lazy-loaded Login component.
This commit is contained in:
@@ -109,6 +109,10 @@ export const routes: Routes = [
|
|||||||
path: 'forms',
|
path: 'forms',
|
||||||
loadComponent: () => import('./forms/forms.component').then(m => m.FormsComponent)
|
loadComponent: () => import('./forms/forms.component').then(m => m.FormsComponent)
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'login',
|
||||||
|
loadComponent: () => import('./login/login.component').then(m => m.LoginDialogComponent)
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'particles',
|
path: 'particles',
|
||||||
loadComponent: () => import('./particles/particles.component').then(m => m.ParticlesComponent)
|
loadComponent: () => import('./particles/particles.component').then(m => m.ParticlesComponent)
|
||||||
|
|||||||
Reference in New Issue
Block a user