Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在研究 NgZorro Collapse 组件。我必须在组件的右上角添加一个关闭按钮。如何添加它?
我得到了答案:
<nz-collapse> <nz-collapse-panel [nzExtra]="extraTpl"> </nz-collapse-panel> </nz-collapse> <ng-template #extraTpl> <i nz-icon nzType="close" nzTheme="outline"></i> </ng-template>