64 lines
1.4 KiB
TypeScript
64 lines
1.4 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
import { AuthGuard } from './_guards/auth.guard';
|
|
|
|
// Layouts
|
|
import { FullLayoutComponent } from './layouts/full-layout.component';
|
|
import { SimpleLayoutComponent } from './layouts/simple-layout.component';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path: '',
|
|
redirectTo: 'dashboard',
|
|
pathMatch: 'full',
|
|
},
|
|
{
|
|
path: '',
|
|
component: FullLayoutComponent,
|
|
// canActivate: [AuthGuard],
|
|
data: {
|
|
title: 'Home'
|
|
},
|
|
children: [
|
|
{
|
|
path: 'dashboard',
|
|
loadChildren: './dashboard/dashboard.module#DashboardModule'
|
|
},
|
|
{
|
|
path: 'components',
|
|
loadChildren: './components/components.module#ComponentsModule'
|
|
},
|
|
{
|
|
path: 'icons',
|
|
loadChildren: './icons/icons.module#IconsModule'
|
|
},
|
|
{
|
|
path: 'widgets',
|
|
loadChildren: './widgets/widgets.module#WidgetsModule'
|
|
},
|
|
{
|
|
path: 'charts',
|
|
loadChildren: './chartjs/chartjs.module#ChartJSModule'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
path: 'pages',
|
|
component: SimpleLayoutComponent,
|
|
data: {
|
|
title: 'Pages'
|
|
},
|
|
children: [
|
|
{
|
|
path: '',
|
|
loadChildren: './pages/pages.module#PagesModule',
|
|
}
|
|
]
|
|
}
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [ RouterModule.forRoot(routes) ],
|
|
exports: [ RouterModule ]
|
|
})
|
|
export class AppRoutingModule {}
|