I\'m new in Angular. I started Tour of Heroes to learn it. So, I am created an app.component with two-way binding.
app.component
two-way
import { Component
Add FormsModule in Imports Array.i.e
FormsModule
@NgModule({ declarations: [ AppComponent ], imports: [ BrowserModule, FormsModule ], providers: [], bootstrap: [AppComponent] })
Or this can be done without using [(ngModel)] by using
[(ngModel)]
instead of