angular-cn/modules/@angular/compiler-cli/integrationtest/ngtools_src/lazy.module.ts

24 lines
583 B
TypeScript
Raw Normal View History

import {NgModule, Component} from '@angular/core';
import {RouterModule} from '@angular/router';
@Component({
selector: 'lazy-comp',
template: 'lazy!'
})
export class LazyComponent {}
@NgModule({
imports: [
RouterModule.forChild([
{path: '', component: LazyComponent, pathMatch: 'full'},
{path: 'feature', loadChildren: './feature/feature.module#FeatureModule'},
{path: 'lazy-feature', loadChildren: './feature/lazy-feature.module#LazyFeatureModule'}
])
],
declarations: [LazyComponent]
})
export class LazyModule {
}
export class SecondModule {}