import { NgModule } from '@angular/core'; import { FormsModule } from '@angular/forms'; import { HttpModule } from '@angular/http'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { NgZorroAntdModule } from 'ng-zorro-antd'; import { IntroduceComponent } from './introduce.component'; @NgModule({ declarations: [ IntroduceComponent ], imports: [ HttpModule, FormsModule, BrowserModule, BrowserAnimationsModule, NgZorroAntdModule.forRoot() ], exports: [IntroduceComponent] }) export class IntroduceModule { }