材质-将指令传递给子组件

时间:2019-12-08 09:41:54

标签: angular angular-material angular-directive

我使用订书机材料,并且需要将自定义指令传递给组件,以通过app指令访问元素的属性。 我试图写:

  <mat-vertical-stepper labelPosition="bottom">
    <mat-step *ngFor="let step of steps" [label]="step" customDirective></mat-step>
  </mat-vertical-stepper>

但是结果HTML是:

<div class="mat-step-text-label ng-star-inserted">Step</div>

没有我的指示。

我该怎么办?

Exemple stackblitz

1 个答案:

答案 0 :(得分:1)