|
|
@@ -5,7 +5,7 @@ main.view--onboarding
|
|
5
|
5
|
v-if='survey'
|
|
6
|
6
|
)
|
|
7
|
7
|
p(v-if='currentStep != 0') You have completed: {{ currentStep - 1 }} / 7 survey steps
|
|
8
|
|
- .questions(v-for='(value, key) in answered')
|
|
|
8
|
+ .answers(v-for='(value, key) in answered')
|
|
9
|
9
|
span(v-if='key == "name" && value') Welcome {{ value }}!
|
|
10
|
10
|
span(v-if='key == "email" && value') All messages we will send to: {{ value }}
|
|
11
|
11
|
span(v-if='key == "zipcode" && value') Your zipcode is: {{ value }}
|
|
|
@@ -22,11 +22,6 @@ main.view--onboarding
|
|
22
|
22
|
@update-answers='updateAnswers'
|
|
23
|
23
|
v-if='step && currentStep == i'
|
|
24
|
24
|
)
|
|
25
|
|
- article(
|
|
26
|
|
- style='display: flex; flex-direction: column; align-items: center'
|
|
27
|
|
- v-else
|
|
28
|
|
- )
|
|
29
|
|
- h1(style='text-align: center') Thank you for completing Siimee's Onboarding Survey!
|
|
30
|
25
|
</template>
|
|
31
|
26
|
|
|
32
|
27
|
<script>
|