我有一个简单的面板组件:
<app-box></app-box>
它有一个模板:
<div class="box">
<div class="box-header">
<h3>Box Header</h3>
<small>Subtitle of this box</small>
</div>
</div>
无论如何我可以使用附加的指令,所以我可以这样操作DOM:
<app-box subtitle="false"></app-box>
当subtitle
为false
时,我想删除small
元素。
另外,这是一种错误的技术吗?
答案 0 :(得分:1)
使用输入:
@Input() subtitle: boolean;
并在你的HTML中:
<small *ngIf="subtitle">...</small>