我尝试使用 Angular 表格。但是我得到了 formControl 错误

I try to use Angular Form. But i got formControl error

我正在使用 angular 13

Form

Ts File

App Module

Error

您需要在 AboutComponent 中定义 FormControl 如下:

export class AboutComponent {

  name = new FormControl('');

  ...
}

详情请参考Reactive Forms