mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
31 lines
701 B
Vue
31 lines
701 B
Vue
<template>
|
|
<div>
|
|
<b-row>
|
|
<b-col class="p-0">
|
|
<b-card class="p-0" style="background-color: #ebebeba3 !important">
|
|
{{ pending ? '—' : $n(balance, 'decimal') }} GDD
|
|
</b-card>
|
|
</b-col>
|
|
<b-col class="pr-0">
|
|
<b-card class="p-0 text-right" style="background-color: #ebebeba3 !important">
|
|
{{ pending ? '—' : $n(GdtBalance, 'decimal') }} GDT
|
|
</b-card>
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'GddStatus',
|
|
props: {
|
|
balance: { type: Number, default: 0 },
|
|
GdtBalance: { type: Number, default: 0 },
|
|
pending: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
},
|
|
}
|
|
</script>
|