Add a New Route
Module
$ ng g ng-matero:module <module-name>const routes: Routes = [
{
path: '',
component: AdminLayoutComponent,
children: [
+ { path: 'abc', loadChildren: () => import('./abc/abc.module').then(m => m.AbcModule) },
],
}
]VS origin module
Page
Dynamic Component
VS origin component
Last updated