We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58d2bde + 9b3d4c0 commit ae37e9cCopy full SHA for ae37e9c
src/components/FlowForm.vue
@@ -60,7 +60,7 @@
60
</div>
61
{{ language.percentCompleted.replace(':percent', percentCompleted) }}
62
63
- <div class="f-nav">
+ <div v-if="navigation" class="f-nav">
64
<a
65
class="f-prev"
66
href="#"
@@ -151,6 +151,10 @@
151
type: Boolean,
152
default: true
153
},
154
+ navigation: {
155
+ type: Boolean,
156
+ default: true
157
+ },
158
timer: {
159
160
default: false
@@ -378,7 +382,9 @@
378
382
e.stopPropagation()
379
383
e.preventDefault()
380
384
381
- this.goToPreviousQuestion()
385
+ if (this.navigation) {
386
+ this.goToPreviousQuestion()
387
+ }
388
} else {
389
390
0 commit comments