mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +00:00
27 lines
646 B
Vue
27 lines
646 B
Vue
<template>
|
|
<div>
|
|
<b-row>
|
|
<b-col xl="6" md="6">
|
|
<stats-card type="gradient-red"
|
|
sub-title="balance_gdd"
|
|
class="mb-4 h1">
|
|
{{ $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">
|
|
{{ $n($store.state.user.balance_gdt) }} GDT
|
|
</stats-card>
|
|
</b-col>
|
|
</b-row>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'GddStatus'
|
|
};
|
|
</script> |