mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
add components TransactionLink in CollapseLinksList.vue
This commit is contained in:
parent
601f74c58c
commit
538a6f021f
@ -2,15 +2,27 @@
|
||||
<div class="collapse-links-list">
|
||||
<div class="d-flex">
|
||||
<div class="text-center pb-3 gradido-max-width">
|
||||
<b>{{ $t('links-list.header') }}</b>
|
||||
{{ transactionLinks }}
|
||||
<div>
|
||||
<b-row class="gradido-custom-background mb-2">
|
||||
<b-col cols="2"><b>Betrag</b></b-col>
|
||||
<b-col cols="2"><b>Vergänglichkeit</b></b-col>
|
||||
<b-col cols="4"><b>Nachricht</b></b-col>
|
||||
<b-col cols="2"><b>Abgelaufen</b></b-col>
|
||||
<b-col cols="2"></b-col>
|
||||
</b-row>
|
||||
<transaction-link v-for="item in transactionLinks" :key="item.id" v-bind:item="item" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import TransactionLink from '@/components/TransactionLinks/TransactionLink.vue'
|
||||
export default {
|
||||
name: 'CollapseLinksList',
|
||||
components: {
|
||||
TransactionLink,
|
||||
},
|
||||
props: {
|
||||
transactionLinks: { type: Array, required: true },
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user