With the following configuration I can output an amount with a currency
const numberFormats = {
"en-GB": {
currency: {
style: 'currency', currency: 'GBP'
}
},
"en-US": {
currency: {
style: 'currency', currency: 'USD'
}
}
}
inside a component
<p>{{ $n(100.20, 'currency') }}</p>
I can output:
<p>£100.20</p>
the following format can be fine on some cases but if I need to output simple amounts like: £5, £10 ect.. I cannot. I tried to configure it with no success.