選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Splash.vue 984B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template lang="pug">
  2. w-flex.column
  3. w-image.splash-logo(
  4. :height='300'
  5. :src='`/assets/logos/siimee_logo.jpg`'
  6. :width='300'
  7. )
  8. w-button.ma1.grow.next-btn(
  9. :height='50'
  10. :width='315'
  11. @click='handleSubmit'
  12. bg-color='success'
  13. shadow
  14. text
  15. xl
  16. ) SIGN UP
  17. router-link(to='/login')
  18. w-button.ma1.grow.next-btn(
  19. :height='50'
  20. :width='315'
  21. bg-color='success'
  22. shadow
  23. text
  24. xl
  25. ) LOG IN
  26. </template>
  27. <script>
  28. export default {
  29. name: 'Splash',
  30. props: {
  31. currentStep: {
  32. required: true,
  33. type: Number,
  34. default: 0,
  35. },
  36. },
  37. emits: ['update-answers'],
  38. methods: {
  39. handleSubmit() {
  40. this.$emit('update-answers', null)
  41. },
  42. },
  43. }
  44. </script>
  45. <style lang="sass">
  46. .w-button
  47. &.next-btn
  48. background-color: #5BA626
  49. </style>