AsyncDirective

Selectors

[async]

Properties

Example

<ng-container *async="let data from source;
  next next; error error; complete complete
">{{ data }}</ng-container>
<ng-template let-data [async]="async"
  (next)="next($event)" (error)="error($event)" (complete)="complete($event)"
>{{ data }}</ng-template>

See more

Last updated