Valeur d'élément d'entrée Angular ViewChild

// in html
<input #input type="text">
// in .ts
@ViewChild('input') input:ElementRef; 
//Output value
console.log(this.input.nativeElement.value);
Friendly Frog