1 src文件夹
import { NgModule } from '@angular/core'; //angular的核心模块import { BrowserModule } from '@angular/platform-browser'; //浏览器解析模块import { AppComponent } from './app.component'; //App组件模块import {HttpClientModule} from '@angular/common/http';//http数据请求模块import {MovieItemComponent} from '../components/MovieItem/MovieItem.component'//组件模块@NgModule({ //装饰器 declarations: [ //声明(配置)当前项目运行依赖的组件 AppComponent, MovieItemComponent ], imports: [ //配置当前项目运行依赖的其他模块 BrowserModule, HttpClientModule ], providers: [], //配置项目所需要的服务 bootstrap: [AppComponent] //指定应用的主视图})export class AppModule { }//通过导出AppMoudle这个模块,来启动应用
2 google插件
Augury
3 vscode插件
Angular Snippets (Version 11)
Angular Files