Answers for "angular 5:If else if condition in table"

3

ngIf else

content_copy
      
      <div *ngIf="condition; then thenBlock else elseBlock"></div>
<ng-template #thenBlock>Content to render when condition is true.</ng-template>
<ng-template #elseBlock>Content to render when condition is false.</ng-template>
Posted by: Guest on April-02-2020

Code answers related to "angular 5:If else if condition in table"

Browse Popular Code Answers by Language