mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2024-11-22 17:40:04 +01:00
20 lines
320 B
Vue
20 lines
320 B
Vue
<template>
|
|
<div class="steps">
|
|
<step v-for="(step, index) in steps" :key="index" :data="step" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Step from '@/components/Step'
|
|
import { mapState } from 'vuex'
|
|
|
|
export default {
|
|
components: {
|
|
Step,
|
|
},
|
|
computed: {
|
|
...mapState('steps', ['steps']),
|
|
},
|
|
}
|
|
</script>
|