mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
47 lines
949 B
Vue
47 lines
949 B
Vue
<template>
|
|
<div>
|
|
<div
|
|
class="header pb-8 pt-lg-4 d-flex align-items-center profile-header"
|
|
style="max-height: 200px"
|
|
></div>
|
|
<b-container fluid class="mt--6">
|
|
<b-row>
|
|
<b-col class="order-xl-1">
|
|
<gdd-table
|
|
:timestamp="timestamp"
|
|
:transactionCount="transactionCount"
|
|
:transactions="transactions"
|
|
@update-transactions="updateTransactions"
|
|
/>
|
|
</b-col>
|
|
</b-row>
|
|
</b-container>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import GddTable from '../../views/Pages/AccountOverview/GddTable.vue'
|
|
|
|
export default {
|
|
components: {
|
|
GddTable,
|
|
},
|
|
props: {
|
|
transactions: {
|
|
default: [],
|
|
},
|
|
transactionCount: { type: Number, default: 0 },
|
|
},
|
|
data() {
|
|
return {
|
|
timestamp: Date.now(),
|
|
}
|
|
},
|
|
methods: {
|
|
updateTransactions() {
|
|
this.$emit('update-transactions')
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
<style></style>
|