Last active
July 7, 2017 16:24
-
-
Save ashish173/49b1555296ce36931969ebdd25cd9f9b to your computer and use it in GitHub Desktop.
NgIf Else local data reference
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div *ngIf="$userObservable | async; else loading; let user"> | |
Hello {{user.last}}, {{user.first}}! | |
</div> | |
<ng-template #loading>Fetching data...</ng-template> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment