Files
angular__angular/aio/content/examples/pipes/src/app/currency-formatting.component.html

6 lines
277 B
HTML

<p>The amount in the local currency is "{{ amount | currency }}".</p>
<p>The amount in Euros (with the default currency symbol) is "{{ amount | currency:'EUR' }}".</p>
<p>The amount in Euros (with a label instead of a symbol) is "{{ amount | currency:'EUR':'Euros ' }}".</p>