Math, asked by Lavi9694, 11 months ago

can't bind to 'ngmodel' since it isn't a known property of 'input' into angular 5

Answers

Answered by ayushman177
1

Answer:

591

In order to use two-way data binding for form inputs you need to import the FormsModule package in your Angular module.

import { FormsModule } from '@angular/forms';

@NgModule({

imports: [

FormsModule

]

Similar questions