separate mat-horizontal-stepper labels and content

本小妞迷上赌 提交于 2019-12-24 12:09:17

问题


I want the stepper labels to be shown in a toolbar, but the content to be shown in another div.

something like:

<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>

can i separate the stepper labels from the content?

来源:https://stackoverflow.com/questions/48614694/separate-mat-horizontal-stepper-labels-and-content

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!