Lets say I need an input from a form into a variable. I do not need the other direction (change the variable in the component and make it visible in the template). So I need only one-way.
Is it more common to bind that input to the variable one-way and fetch it by a function
<input type="text" (keyup)="read ($event)"/>
OR
make ngModel even if I need it only one-way but it is more comfortable?
<input type="text" [(ngmModel)]="data"/>