can also be solved by importing FormsModule into your bootstrap module, then it will be available for all components.
import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { AppComponent } from 'app/components/app'; @NgModule({ imports: [BrowserModule, FormsModule], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { }
systemjsFan Aug 11 '16 at 9:58 on 2016-08-11 09:58
source share