我正在尝试对角材料6.4.2中的文本区域应用自动大小调整,如下所示-
<mat-form-field>
<textarea matInput [matTextareaAutosize]="true" placeholder="Task description" formControlName="description" [errorStateMatcher]="ErrorMatcher">
</textarea>
</mat-form-field>
但是它引发以下错误:无法绑定到'matTextareaAutosize',因为它不是'textarea'的已知属性
我的代码有什么问题?
答案 0 :(得分:1)
在你app.moudle
import { MatInputModule } from '@angular/material';
,然后将MatInputModule
添加到您的app.moudle
导入中