iview/src/components/checkbox/checkbox-group.vue
梁灏 cd78c9c488 some comps support dispatch event to FormItem
some comps support dispatch event to FormItem
2017-03-09 11:14:40 +08:00

60 lines
1.5 KiB
Vue

<template>
<div :class="classes">
<slot></slot>
</div>
</template>
<script>
import Emitter from '../../mixins/emitter';
const prefixCls = 'ivu-checkbox-group';
export default {
name: 'CheckboxGroup',
mixins: [ Emitter ],
props: {
value: {
type: Array,
default () {
return [];
}
}
},
data () {
return {
currentValue: this.value
};
},
computed: {
classes () {
return `${prefixCls}`;
}
},
mounted () {
this.updateModel(true);
},
methods: {
updateModel (update) {
const value = this.value;
this.$children.forEach((child) => {
child.model = value;
if (update) {
child.currentValue = value.indexOf(child.label) >= 0;
child.group = true;
}
});
},
change (data) {
this.currentValue = data;
this.$emit('input', data);
this.$emit('on-change', data);
this.dispatch('FormItem', 'on-form-change', data);
}
},
watch: {
value () {
this.updateModel(true);
}
}
};
</script>