You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Splash.vue 546B

123456789101112131415161718192021222324252627
  1. <template lang="pug">
  2. .splash
  3. .splash--icon(style='width: 347px; height: 347px; background-color: red')
  4. div(style='text-align: center')
  5. w-button.ma1.grow(@click='handleSubmit') GET STARTED
  6. </template>
  7. <script>
  8. export default {
  9. name: 'Splash',
  10. props: {
  11. currentStep: {
  12. required: true,
  13. type: Number,
  14. default: 0,
  15. },
  16. },
  17. emits: ['update-answers'],
  18. methods: {
  19. handleSubmit() {
  20. this.$emit('update-answers', null)
  21. },
  22. },
  23. }
  24. </script>