编写通用组件

This commit is contained in:
禾几海
2020-06-30 23:56:16 +08:00
parent c271b1a8cf
commit 781513d8c9
6 changed files with 67 additions and 33 deletions

View File

@@ -45,6 +45,10 @@ const routes: Routes = [
loadChildren: () => import('./admin-visitor/admin-visitor.module').then(mod => mod.AdminVisitorModule),
// canActivate: [AuthGuard]
},
{
path: 'test',
loadChildren: () => import('./test-common-table/test-common-table.module').then(Mod => Mod.TestCommonTableModule)
},
{
path: '**',
loadChildren: () => import('./admin-dashboard/admin-dashboard.module').then(mod => mod.AdminDashboardModule),