Skip to content

Instantly share code, notes, and snippets.

@rexar1988
Last active August 1, 2020 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rexar1988/04ab899e469786eeac694ca65b08bddd to your computer and use it in GitHub Desktop.
Save rexar1988/04ab899e469786eeac694ca65b08bddd to your computer and use it in GitHub Desktop.
Variable in ng-template
<ng-template let-firstName="myFirstName" let-greeting="greeting">
<h2>Contact Template</h2>
<p>Hello, I am {{ firstName }}!</p>
<button (click)="greeting(firstName)">Show first name</button>
</ng-template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment