checkbox-age.vue
1.21 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
<template>
<Checkbox-group v-model="values" @on-change="updateValue">
<Checkbox v-for="age in ageList" :key="age.id" :label="age.id" :disabled="disable">
<span>{{age.label}}</span>
</Checkbox>
</Checkbox-group>
</template>
<script>
export default {
name: 'checkbox-age',
props: {
value: {
type: String
},
disable: {
type: Boolean
}
},
data() {
return {
ageList: [{
id: '1',
label: '成人'
}, {
id: '2',
label: '大童'
}, {
id: '3',
label: '中童'
}, {
id: '4',
label: '小童'
}, {
id: '5',
label: '幼童'
}],
values: this.value ? this.value.split('|') : []
};
},
methods: {
updateValue(newValue) {
let nValue = newValue.join('|');
this.$emit('input', nValue);
}
},
watch: {
value: function(newValue) {
this.values = newValue.split('|');
}
}
};
</script>
<style>
</style>