mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
29 lines
579 B
Vue
29 lines
579 B
Vue
<template>
|
|
<div>
|
|
<div class="header pb-8 pt-5 pt-lg-8 d-flex align-items-center profile-header">
|
|
<b-container fluid></b-container>
|
|
</div>
|
|
|
|
<b-container fluid class="mt--6">
|
|
<b-row>
|
|
<b-col xl="12" class="order-xl-2 mb-5">
|
|
<user-card :balance="balance"></user-card>
|
|
</b-col>
|
|
</b-row>
|
|
</b-container>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import UserCard from './UserProfile/UserCard.vue'
|
|
|
|
export default {
|
|
components: {
|
|
UserCard,
|
|
},
|
|
props: {
|
|
balance: { type: Number, default: 0 },
|
|
},
|
|
}
|
|
</script>
|
|
<style></style>
|