我有以下面板组件html:
<div class="card">
<div class="card-header" *ngIf="???">
<ng-content select="panel-title"></ng-content>
</div>
</div>
我可以包含以下组件:
<card>
<card-header>Some other HTML</card-header>
</card>
只有在标签中包含内容时,才可以呈现卡头div吗?