Convert frontend to Vue #3

Merged
jacob1123 merged 158 commits from vue into master 2022-02-08 22:20:11 +01:00
Showing only changes of commit d2b414f328 - Show all commits

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,
});
}