mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-18 19:01:19 +00:00
36 lines
803 B
Vue
36 lines
803 B
Vue
<template>
|
|
<div>
|
|
<b-row v-show="this.row_form">
|
|
<b-col xl="6" md="6">
|
|
<stats-card
|
|
type="gradient-red"
|
|
sub-title="balance_gdd"
|
|
class="mb-4 h1"
|
|
style="background-color: #ebebeba3 !important"
|
|
>
|
|
{{ $n($store.state.user.balance) }} GDD
|
|
</stats-card>
|
|
</b-col>
|
|
<b-col xl="6" md="6">
|
|
<stats-card
|
|
type="gradient-orange"
|
|
sub-title="balance_gdt"
|
|
class="mb-4 h1"
|
|
style="background-color: #ebebeba3 !important"
|
|
>
|
|
{{ $n($store.state.user.balance_gdt) }} GDT
|
|
</stats-card>
|
|
</b-col>
|
|
</b-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'GddStatus',
|
|
props: {
|
|
row_form: { type: Boolean, default: true },
|
|
},
|
|
}
|
|
</script>
|