mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
ad function updateListTransactionLinks on component
This commit is contained in:
parent
83b1c4c9e1
commit
f1718537b2
@ -10,7 +10,12 @@
|
||||
<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" />
|
||||
<transaction-link
|
||||
v-for="item in transactionLinks"
|
||||
:key="item.id"
|
||||
v-bind:item="item"
|
||||
@update-list-transaction-links="updateListTransactionLinks"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -26,5 +31,10 @@ export default {
|
||||
props: {
|
||||
transactionLinks: { type: Array, required: true },
|
||||
},
|
||||
methods: {
|
||||
updateListTransactionLinks() {
|
||||
this.$emit('update-list-transaction-links')
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user