checkbox-material.vue
1.04 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
<template>
<Checkbox-group :value="handleValue" @input="updateValue">
<Checkbox v-for="name in idNameList" :label="name.id" :key="name">
<span>{{name.text}}</span>
</Checkbox>
</Checkbox-group>
</template>
<script>
export default {
name: 'CheckboxMaterial',
props: {
value: {
type: Array,
default: function() {
return [];
}
},
idNameList: {
type: Array,
default: function() {
return [];
}
}
},
data() {
let _this = this;
return {
handleValue: _this.value.map(s => `${s.id}`)
};
},
methods: {
updateValue: function(value) {
let newValue = value.map(s => ({id: s}));
this.handleValue = value;
this.$emit('input', newValue);
}
},
watch: {
value(newValue) {
this.handleValue = newValue.map(s => `${s.id}`);
}
}
};
</script>
<style>
</style>