Always treat Currency.value as number

This commit is contained in:
Jan Bader 2022-02-08 10:53:06 +00:00
parent e873795562
commit d2b414f328

View File

@ -5,7 +5,7 @@ export default defineComponent({
props: ["value"],
computed: {
formattedValue() {
return this.value.toLocaleString(undefined, {
return Number(this.value).toLocaleString(undefined, {
minimumFractionDigits: 2,
});
}