15
* ngIf e * ngFor no mesmo elemento causando erro
Estou tendo um problema ao tentar usar o Angular *ngFore *ngIfno mesmo elemento. Ao tentar fazer um loop pela coleção no *ngFor, a coleção é vista como nulle, consequentemente, falha ao tentar acessar suas propriedades no modelo. @Component({ selector: 'shell', template: ` <h3>Shell</h3><button (click)="toggle()">Toggle!</button> <div *ngIf="show" *ngFor="let thing of stuff"> …