2018-03-19 20:49:35 +08:00

29 lines
374 B
Vue

<template>
<div class="van-checkbox-group">
<slot />
</div>
</template>
<script>
import create from '../utils/create';
export default create({
name: 'checkbox-group',
props: {
value: {},
disabled: Boolean,
max: {
default: 0,
type: Number
}
},
watch: {
value(val) {
this.$emit('change', val);
}
}
});
</script>