问题描述: 在使用Angular Material的mat-step组件时,发现在初始时matStepLabels未显示。
解决方法:
import { Component } from '@angular/core';
@Component({
selector: 'app-step-example',
templateUrl: './step-example.component.html',
styleUrls: ['./step-example.component.css']
})
export class StepExampleComponent {
stepLabels: string[] = ['Step 1', 'Step 2', 'Step 3'];
constructor() { }
}
这样,当组件初始化时,matStepLabels就会正常显示了。