Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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>