Created
February 24, 2020 01:39
-
-
Save b2977053/cb3f953c19b98a8971583a36f6792eaa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- *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