Answers for "ngIf directive 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
1

angular ngif

<label *ngIf="1==1" > show Label when condition is true </label>
Posted by: Guest on September-22-2021

Browse Popular Code Answers by Language