Answers for "how to use if else in th element in angular"

13

ng if else

<div *ngIf="condition; else elseBlock">Content to render when condition is true.</div>
<ng-template #elseBlock>Content to render when condition is false.</ng-template>
Posted by: Guest on March-03-2020
0

ng if else

<div *ngIf="isValid;else other_content">
    content here ...
</div>

<ng-template #other_content>other content here...</ng-template>
Posted by: Guest on August-14-2021

Code answers related to "how to use if else in th element in angular"

Browse Popular Code Answers by Language