| 123456789101112131415161718192021222324252627 |
- <template lang="pug">
- .splash
- .splash--icon(style='width: 347px; height: 347px; background-color: red')
- div(style='text-align: center')
- w-button.ma1.grow(@click='handleSubmit') GET STARTED
-
- </template>
-
- <script>
- export default {
- name: 'Splash',
- props: {
- currentStep: {
- required: true,
- type: Number,
- default: 0,
- },
- },
- emits: ['update-answers'],
- methods: {
- handleSubmit() {
- this.$emit('update-answers', null)
- },
- },
-
- }
- </script>
|