错误:无法绑定到 'ngModel',因为它不是 'input' 的已知 属性。 Besoin d'aide

Erreur: Can't bind to 'ngModel' since it isn't a known property of 'input'. Besoin d'aide

这里我仍然有这个错误,我做了我在文档和论坛上找到的,但我必须遗漏一些东西。谁能帮帮我

错误:
https://i.stack.imgur.com/3Cct2.png
App.module.ts:
https://i.stack.imgur.com/YRMvX.png
登录组件:
https://i.stack.imgur.com/K22xF.png

编辑: 我忘记导入我的 loginComponent ‍♂️

请将您的 LoginComponent 导入 app.module.ts 并更新 declarations 数组

declarations: [
     AppComponent, 
     HomeComponent,
     WelcomeComponent,
     LoginComponent //added
  ],