widness
1/28/2018 - 8:48 PM

submit

Example of how use an submit on Angular

<form (submit)="addHobby(hobby.value)">
  <div>
      <label for="hobby">Hobby</label>
      <input type="text" #hobby>
  </div>
</form>
addHobby(){
  console.log(hobby);
  this.hobbies,unshift(hobby); //unshift = add at the beginning
  return false;
}