最佳答案
我有一个问题,关于角材料(与角4 +)。在我的组件模板中,我添加了一个 <mat-horizontal-stepper>
组件,在每个步骤 <mat-step>
中,我都有步进按钮来导航组件。像这样..。
<mat-horizontal-stepper>
<mat-step>
Step 1
<button mat-button matStepperPrevious type="button">Back</button>
<button mat-button matStepperNext type="button">Next</button>
</mat-step>
<mat-step>
Step 2
<button mat-button matStepperPrevious type="button">Back</button>
<button mat-button matStepperNext type="button">Next</button>
</mat-step>
<mat-step>
Step 3
<button mat-button matStepperPrevious type="button">Back</button>
<button mat-button matStepperNext type="button">Next</button>
</mat-step>
</mat-horizontal-stepper>
现在我想知道是否有可能删除按钮的每一步,并有他们在 <mat-horizontal-stepper>
的其他地方在一个静态的位置,甚至在 <mat-horizontal-stepper>
之外,我可以导航向后和向前使用代码在我的组件类型脚本文件。为了给出一个想法,我希望我的 HTML 是这样的东西
<mat-horizontal-stepper>
<mat-step>
Step 1
</mat-step>
<mat-step>
Step 2
</mat-step>
<mat-step>
Step 3
</mat-step>
<!-- one option -->
<div>
<button mat-button matStepperPrevious type="button">Back</button>
<button mat-button matStepperNext type="button">Next</button>
</div>
</mat-horizontal-stepper>
<!-- second option -->
<div>
<button (click)="goBack()" type="button">Back</button>
<button (click)="goForward()" type="button">Next</button>
</div>