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>
没有我的指示。
我该怎么做?
我使用 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>
没有我的指示。
我该怎么做?