lacolaco
11/3/2017 - 12:06 AM

ngif-then-else.html

<div *ngIf="show; then thenBlock; else elseBlock"></div> 
<ng-template #thenBlock>show === true</ng-template>
<ng-template #elseBlock>show === false</ng-template>