<!-- *ngIf, else, ng-container 與 ng-template 搭配使用 -->
<span class="highlight">
<ng-container *ngIf="keyword === ''; then pleaseInput; else yourInput"></ng-container>
<ng-template #pleaseInput>
請輸入關鍵字
</ng-template>
<ng-template #yourInput>
你輸入: {{ keyword }}
</ng-template>
</span>