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 410B

1234567891011121314151617
  1. <template lang="pug">
  2. .splash-icon(style="width:347px; height:347px; background-color: red;")
  3. div(style="text-align:center;")
  4. w-button.ma1.grow(@click="this.$emit('go-to-step', currentStep + 1)") GET STARTED
  5. </template>
  6. <script>
  7. export default {
  8. name: 'Splash',
  9. props: {
  10. currentStep:{
  11. required: true,
  12. type: Number,
  13. default: 0
  14. }
  15. },
  16. }
  17. </script>