mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
19 lines
381 B
Vue
19 lines
381 B
Vue
<template>
|
|
<div class="gdd-send">
|
|
<slot :name="transactionSteps[currentTransactionStep]" />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'GddSend',
|
|
data() {
|
|
return {
|
|
transactionSteps: ['transaction-form', 'transaction-confirmation', 'transaction-result'],
|
|
}
|
|
},
|
|
props: {
|
|
currentTransactionStep: { type: Number, default: 0 },
|
|
},
|
|
}
|
|
</script>
|