Files
airport-chengdu-web/src/app/pages/main/main.module.ts
T

29 lines
761 B
TypeScript
Raw Normal View History

2018-10-26 11:33:25 +08:00
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
2019-01-23 10:40:58 +08:00
import { NgZorroAntdModule } from 'ng-zorro-antd';
/* 消息提示 */
import { ToastModule } from '../../components/toast/toast.module'
2018-10-26 11:33:25 +08:00
import { MainComponent } from './main.component';
2018-11-26 18:53:23 +08:00
import { MainRoutingModule } from './main-routing.module';
2019-02-18 17:59:22 +08:00
import { TabsetModule } from '../tabset/tabset.module'
2018-10-26 11:33:25 +08:00
@NgModule({
imports: [
CommonModule,
FormsModule,
ReactiveFormsModule,
NgZorroAntdModule,
2019-01-23 10:40:58 +08:00
MainRoutingModule,
2019-02-18 17:59:22 +08:00
ToastModule,
TabsetModule
2018-10-26 11:33:25 +08:00
],
2018-11-26 18:53:23 +08:00
declarations: [
2019-02-18 17:59:22 +08:00
MainComponent,
2018-11-26 18:53:23 +08:00
],
2019-02-18 17:59:22 +08:00
providers: []
2018-10-26 11:33:25 +08:00
})
export class MainModule { }