Skip to content

Instantly share code, notes, and snippets.

@b2977053
Created February 24, 2020 01:39
Show Gist options
  • Save b2977053/cb3f953c19b98a8971583a36f6792eaa to your computer and use it in GitHub Desktop.
Save b2977053/cb3f953c19b98a8971583a36f6792eaa to your computer and use it in GitHub Desktop.
<!-- *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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment