使用module.ts绑定component.ts - Angular 2

时间:2017-06-12 12:31:35

标签: windows angular typescript angular2-template

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import {FormsModule} from '@angular/forms';
import { AppComponent } from './app.component';

@NgModule({
imports:
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    FormsModeule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

我最近从它的官方网站上学习Angular JS。我的网站在开始时工作正常,但现在我坚持将组件绑定到模块。我收到错误,它无法找到食物。我不知道该做什么我已多次重新检查代码。

enter image description here

0 个答案:

没有答案