No directive found with exportAs 'ngModel'

Errors

  • No directive found with exportAs 'ngModel'
  • No directive found with exportAs 'ngForm'

Solution

  • Import forms Module in app.module.ts [import { FormsModule } from '@angular/forms';]
  • or import it on your common module or shared module
  • if module is different like auth.module.ts also import it in auth.module.ts file [import { FormsModule } from '@angular/forms';]

And Also Keep in NgModule

@NgModule({

  declarations: [LoginComponent],

  imports: [

    AuthRoutingModule,

    FormsModule,

  ]

})