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 { }	#类

  

原文地址:https://www.cnblogs.com/amoyzhu/p/8109340.html