<input [ngModel]="item.value | currency" (ngModelChange)="item.value=$event"
name="name" type="text" />
I would like to add one more point to the accepted answer.
If the type of your input control is not text the pipe will not work.
Keep it in mind and save your time.