新增路由
模块
$ 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) },
],
}
]对比原始 module
页面
动态组件
对比原始 component
Last updated