我正在使用步进器,我想禁用下一步,直到所有填充物都应填充为止,以便在
html文件

<mat-horizontal-stepper [linear]="true" #stepper>
        <mat-step [stepControl]="firstFormGroup">
          <form [formGroup]="firstFormGroup">

它工作正常,但是只要我要进行下一步,“1”就变成“cre”
在检查我得到

javascript -  Angular Material 步进器下一步显示create而不是1-LMLPHP

我没有在用户代码中创建任何来自mat-icon的用户

最佳答案

您可以在[completed]="false"上设置mat-step,而只有数字而不是图标。

或将"create"替换为钢笔图标,则需要添加google material字体图标链接:
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"rel="stylesheet">

08-19 16:43