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

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template lang="pug">
  2. h3 ACTIVELY SEARCHING
  3. p {{question}}
  4. w-select.mt4(
  5. v-model="selectedRole"
  6. :items="items"
  7. placeholder="i am")
  8. w-button.ma1.grow(@click="handleSubmit") NEXT
  9. </template>
  10. <script>
  11. export default {
  12. name: 'Role',
  13. props: {
  14. currentStep:{
  15. required: true,
  16. type: Number,
  17. default: 0
  18. }
  19. },
  20. data: () => ({
  21. items: [{label: 'RECRUITER'},{label: 'HIRING MANAGER'}],
  22. question: 'What is your role at your company?',
  23. selectedRole: null,
  24. }),
  25. methods: {
  26. handleSubmit(){
  27. if(!this.selectedRole) {
  28. console.warn('Please select a role.')
  29. return
  30. }
  31. let payload = {
  32. key: 'Role',
  33. question: this.question,
  34. answer: this.selectedRole
  35. }
  36. this.$emit('update-answers', payload)
  37. this.$emit('go-to-step', this.currentStep + 1)
  38. }
  39. }
  40. }
  41. </script>