2021-03-24 06:05:05 +01:00

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>