Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kevinchisholm/ebafe022c93d280aad165f3677aee76e to your computer and use it in GitHub Desktop.
Save kevinchisholm/ebafe022c93d280aad165f3677aee76e to your computer and use it in GitHub Desktop.
<p *ngIf="formEntry.name">The name is {{formEntry.name}} </p>
<p *ngIf="formEntry.address">The address is {{formEntry.address}} </p>
<ng-template [ngIf] = "formEntry.phone">
<p>The phone number is</p>
<p> {{formEntry.phone}} </p>
</ng-template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment