RPeraltaJr
7/14/2017 - 6:22 PM

Reference Binding

Reference Binding

<!-- You can define a variable that points to an element or 
Component instance by using a hash -->

<div>
  <!-- userName variable is available globally in this template -->
  <input #userName>
  <!-- Remember, input elements have a value property -->
  <button (click)="isTaken(userName.value)"></button>
</div>