不同div中的步进内容

时间:2018-08-29 11:07:06

标签: javascript angular angular-material material-design

我发现与我接近的唯一问题是this one。 我想制作一个自定义步进器,将选项卡/导航置于不同的div中,然后将其用于设计目的。

我会有这样的步进器

<app-main-title title="VPN"></app-main-title>
<div class="stepper-container">
  <div class="stepper-wrapper">
    <mat-horizontal-stepper class="mat-horizontal-content-container">
      <mat-step
              label="{{ 'Creating' }}">
      </mat-step>
      <mat-step
              label="{{ 'Installing' }}">
      </mat-step>
      <mat-step
              label="{{ 'Connecting' }}">
      </mat-step>
    </mat-horizontal-stepper>
  </div>
</div>

<div class="main-content-container">
  <p>CONTENT SHOULD BE DISPLAYED HERE/p>
</div>

我将如何处理?我找到的最接近我想要的东西是使用路由器存储和列表项,但是我想使用material stepper内置的功能。

0 个答案:

没有答案