|
|
@@ -22,7 +22,7 @@ main.view--onboarding
|
|
22
|
22
|
// TODO: change to different vue component
|
|
23
|
23
|
article(
|
|
24
|
24
|
style='display: flex; flex-direction: column; align-items: center; text-align: center;'
|
|
25
|
|
- v-if='currentStep == 8'
|
|
|
25
|
+ v-else
|
|
26
|
26
|
)
|
|
27
|
27
|
h1 Thanks for Completing Our Survey!!
|
|
28
|
28
|
h2 Please review your answers and let us know if you need to change anything.
|
|
|
@@ -63,6 +63,7 @@ export default {
|
|
63
|
63
|
onSubmit() {
|
|
64
|
64
|
console.log(JSON.stringify(this.answered))
|
|
65
|
65
|
// TODO: Change to different vue component
|
|
|
66
|
+ this.survey = null
|
|
66
|
67
|
this.goToStep(this.currentStep + 1)
|
|
67
|
68
|
},
|
|
68
|
69
|
goToStep(num) {
|