我希望步进器标签显示在工具栏中,但要在另一个div中显示内容。
类似的东西:
<div>
<mat-horizontal-stepper md-stretch-steppers="always">
<mat-step>
<ng-template matStepLabel>Head 1</ng-template>
</mat-step>
<mat-step>
<ng-template matStepLabel>Head 1</ng-template>
</mat-step>
</mat-horizontal-stepper>
</div>
<div>
<any-components></any-components>
</div>
<div id="contents">
[contents goes here]
</div>
我可以将步进标签与内容分开吗?