gpt4 book ai didi

angular - 仅当处于事件状态时如何显示 Material 选项卡内容?

转载 作者:行者123 更新时间:2023-12-03 18:44:56 24 4
gpt4 key购买 nike

我尝试仅在选择时显示选项卡内容:

        <mat-tab label="contacts">
<p-contacts [contacts]="selectedPanel.contacts"
*ngIf="tabGroup.selectedIndex === 1">
</p-contacts>
</mat-tab>

这是工作,但我得到了 ERROR Error: ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: 'ngIf: false'. Current value: 'ngIf: true'.那我做错了什么?

demo

最佳答案

您可以 lazily load the tabs'内容通过将内容放入 ng-templatematTabContent属性是这样的:

<mat-tab-group  #tabGroup>
<mat-tab label="Firt">
<ng-template matTabContent>
Content 1
</ng-template>
</mat-tab>
<mat-tab label="Second">
<ng-template matTabContent>
Content 2
</ng-template>
</mat-tab>
<mat-tab label="Third">
<ng-template matTabContent>
Content 3
</ng-template>
</mat-tab>
</mat-tab-group>

关于angular - 仅当处于事件状态时如何显示 Material 选项卡内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56289391/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com