Answers for "ngfor with ngif from ngfor condition"

3

*ngIf and *ngFor in same container

<ng-container *ngIf="show">
  <div *ngFor="let thing of stuff">
    {{log(thing)}}
    <span>{{thing.name}}</span>
  </div>
</ng-container>
Posted by: Guest on December-01-2020

Browse Popular Code Answers by Language