Follow the following steps in Angular 7 to have Two Way Binding in Input tag without errors.
- In app.module.ts import FormsModule from @angular/forms
- import { FormsModule } from '@angular/forms';
- Under imports list add FormsModule
- FormsModule
- Add name attribute the the Input tag
- name="firstname"
And you are good to go!
Comments
Post a Comment