Skip to content

Directives

Change the DOM

  • *ngIf
  • *ngFor

* is syntactic sugar for ng-template

my-component.component.html
<ng-template ngIf="condition">
<p>Show me!</p>
</ng-template>