forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStepper.vue
More file actions
68 lines (67 loc) · 1.35 KB
/
Stepper.vue
File metadata and controls
68 lines (67 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<template>
<div class="q-stepper timeline" :class="color">
<slot></slot>
</div>
</template>
<script>
export default {
props: {
color: {
type: String,
default: 'primary'
},
backLabel: {
type: String,
default: 'Back'
},
nextLabel: {
type: String,
default: 'Continue'
},
finishLabel: {
type: String,
default: 'Finish'
}
},
data () {
return {
config: {
steps: 0,
currentStep: 0
}
}
},
methods: {
reset () {
this.config.currentStep = 1
this.$emit('step', this.config.currentStep)
},
nextStep () {
this.config.currentStep++
this.$emit('step', this.config.currentStep)
if (this.config.currentStep > this.config.steps) {
this.$emit('finish')
}
},
previousStep () {
this.config.currentStep--
this.$emit('step', this.config.currentStep)
},
finish () {
this.config.currentStep = this.config.steps + 1
this.$emit('step', this.config.currentStep)
this.$emit('finish')
}
},
mounted () {
let step = 1
this.config.currentStep = this.config.currentStep || 1
this.config.steps = this.$children.length
this.$emit('step', this.config.currentStep)
this.$children.forEach(child => {
child.step = step
step++
})
}
}
</script>