// app.component.html <input type="text" #nameInput> <button (click)="onClick(nameInput)">Add</button> // app.component.ts onClick(nameInput: HTMLInputElement){ alert(nameInput.value); }