Display Balance as fixed

This commit is contained in:
Ferdinand Thiessen 2021-01-27 02:47:19 +01:00
parent a787abdbc0
commit 91200f277c
1 changed files with 6 additions and 1 deletions

View File

@ -40,7 +40,12 @@ export default defineComponent({
align: 'left', align: 'left',
sortable: true sortable: true
}, },
{ name: 'balance', label: 'Kontostand', field: 'balance' }, {
name: 'balance',
label: 'Kontostand',
field: 'balance',
format: (val: number) => val.toFixed(2)
},
{ {
name: 'limit', name: 'limit',
label: 'Limit', label: 'Limit',