Я использую Meterial Angular FormField. Как мне удалить дефолт в моей форме:
<mat-form-field appearance="fill">
<mat-label>Ngày nhận</mat-label>
<input matInput placeholder="Ngày nhận"
[formControl]="ngayNhanFormControl"
required
>
<mat-error *ngIf="( ngayNhanFormControl.errors?.required)"></mat-error>
</mat-form-field>
И это мой код:
this.ngayNhanFormControl = new FormControl({value: ''}, [Validators.required]);
...
this.theoDoiPhoiGCNFormGroup = new FormGroup({
NgayNhan: this.ngayNhanFormControl,