typescript app.module.ts
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了typescript app.module.ts相关的知识,希望对你有一定的参考价值。
import { FormsModule } from '@angular/forms';
import { HttpClient, HttpClientModule } from '@angular/common/http';
import { TodoService } from './services/todo.service';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
HttpClientModule,
FormsModule,
NgbModule.forRoot()
],
providers: [
TodoService
],
bootstrap: [AppComponent]
})
export class AppModule { }
以上是关于typescript app.module.ts的主要内容,如果未能解决你的问题,请参考以下文章
typescript app.module.ts
typescript DD-app.module.ts
typescript APP-routing.module.ts
typescript APP-logger.module.ts
typescript IF_06_03_app.module.ts
typescript 滑动手势 - 将hammerjs添加到app.module.ts