| 1234567891011121314151617 |
- <template lang="pug">
- .splash-icon(style="width:347px; height:347px; background-color: red;")
- div(style="text-align:center;")
- w-button.ma1.grow(@click="this.$emit('go-to-step', currentStep + 1)") GET STARTED
- </template>
- <script>
- export default {
- name: 'Splash',
- props: {
- currentStep:{
- required: true,
- type: Number,
- default: 0
- }
- },
- }
- </script>
|