当前位置: 首页 > 工具软件 > GoAngular > 使用案例 >

angular

高奇
2023-12-01

angular项目启动

1.  angular.json  项目配置

"index": "src/index.html",项目中唯一完整dom树  <app-root></app-root>根元素

 "main": "src/main.ts", bootstrapModule(AppModule)

AppModule:bootstrap: [AppComponent]

2.一些插件

Angular Language Service 跳转到定义的位置、帮助补全变量信息。

Angular Support

Go to / peek definition from:

  • interpolation {{ myVar }}
  • input [(...)]="myVar"
  • output (...)="myMethod"
  • templateUrl or styleUrls in @Component decorator
  • component <my-component></my-component>
 类似资料: