单独的mat-h​​orizo​​ntal-stepper标签和内容

时间:2018-02-05 01:19:47

标签: angular angular-material2 angular5 angular-material-stepper

我希望步进器标签显示在工具栏中,但要在另一个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>

我可以将步进标签与内容分开吗?

0 个答案:

没有答案