Hello I am trying to show a currency in an input box using Angular2. Right now I have
<p class="list-group-item-text">${{ item.price | number : '1.2-2'}}</p>
<input type="text" class="form-control" [(ngModel)]="item.price">
and the out put is
and what I am looking for is the text inside the box to be the same as the text above the box.