Answers for "nested condition in *ngIf in angular"

0

nested condition in *ngIf in angular

<ng-container *ngIf="(value1 || value2); else showDefault">
    <ng-container *ngIf="value3!=null && value4==null; else showValue4">
    </ng-container>
    <ng-template #showValue4>
    </ng-template>
</ng-container>
<ng-template #showDefault>
</ng-template>
Posted by: Guest on July-16-2021

Code answers related to "nested condition in *ngIf in angular"

Browse Popular Code Answers by Language