matTextareaAutosize在Angular Material 6.4.2中不起作用

时间:2018-08-14 03:13:02

标签: angular6 angular-material-6

我正在尝试对角材料6.4.2中的文本区域应用自动大小调整,如下所示-

<mat-form-field>
      <textarea matInput [matTextareaAutosize]="true" placeholder="Task description" formControlName="description" [errorStateMatcher]="ErrorMatcher">
       </textarea>
</mat-form-field>

但是它引发以下错误:无法绑定到'matTextareaAutosize',因为它不是'textarea'的已知属性

我的代码有什么问题?

1 个答案:

答案 0 :(得分:1)

在你app.moudle

import {  MatInputModule } from '@angular/material';

,然后将MatInputModule添加到您的app.moudle导入中