ogerly db1124da3f separate pages: overview and send.
apexcharts library inserted.
example charts created: lienen and bar charts.
example charts inserted
2021-10-13 16:13:28 +02:00

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>