有没有办法设置可扩展的角垫面板始终扩展?当用户单击面板标题时,我不想关闭它
谢谢...
答案 0 :(得分:0)
<mat-expansion-panel [disabled]="true" [expanded]="true">
答案 1 :(得分:0)
以下代码适用于所有scnerio,请检查。
<mat-expansion-panel *ngIf="currentCommittee" [expanded]="true">
答案 2 :(得分:0)
* ng如果在需要检查服务变量的情况下为我提供了帮助,并且将其设置为true,那么我将展开面板:
<mat-expansion-panel *ngIf="navigationService.varIsTrue || true"
[expanded]="navigationService.varIsTrue"
</mat-expansion-panel>