app.module.ts说明

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';


import { AppComponent } from './app.component';


@NgModule({			#装饰器
  declarations: [	#声明组件、指令和管道
    AppComponent	#
  ],
  imports: [		#需要的模块
    BrowserModule	#浏览器模块
  ],
  providers: [],	#声明模块中提供了什么服务
  bootstrap: [AppComponent]		#声明模块的组组件是什么
})
export class AppModule { }	#类

  

posted @ 2017-12-25 14:44  amoyzhu  阅读(2691)  评论(0编辑  收藏  举报