Material - 将指令传递给子组件

Material - pass directive to child component

我使用 Stapler material,我需要将自定义指令传递给组件,以通过 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

这是你想要的吗?请看例子。

https://stackblitz.com/edit/angular-g9huhk-4xwcmx?file=src/app/custom.directive.ts