Skip to content

Instantly share code, notes, and snippets.

@softwarejc
Created January 24, 2016 15:36
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 softwarejc/598f690d436cb1f5553f to your computer and use it in GitHub Desktop.
Save softwarejc/598f690d436cb1f5553f to your computer and use it in GitHub Desktop.
<div style="background: ghostwhite">
<h3>
<label>Name:</label>
<!--binding to component field-->
<input type="text" [(ngModel)]="name" placeholder="Enter a name here">
<!--binding click event to component method-->
<button class="btn btn-primary col-md-2" (click)="sayHello()">
Hello!
</button>
</h3>
<!-- conditionally display `message` -->
<h4 [hidden]="!message">{{message}}</h4>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment