Answers for "Can't bind to 'ngMOdel' since it isn't a known property of 'mat-option'."

0

Uncaught Error: Template parse errors: Can't bind to 'ngModel'

Try to import FormModule an app.module.ts file

import { FormsModule } from '@angular/forms'

@NgModule({
  declarations: [
    ....
  ],
  imports: [
    ...,
    FormsModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }
Posted by: Guest on April-14-2020

Code answers related to "Can't bind to 'ngMOdel' since it isn't a known property of 'mat-option'."

Browse Popular Code Answers by Language