mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
22 lines
318 B
JavaScript
22 lines
318 B
JavaScript
import { use } from '../utils';
|
|
|
|
const [sfc, bem] = use('checkbox-group');
|
|
|
|
export default sfc({
|
|
props: {
|
|
max: Number,
|
|
value: Array,
|
|
disabled: Boolean
|
|
},
|
|
|
|
watch: {
|
|
value(val) {
|
|
this.$emit('change', val);
|
|
}
|
|
},
|
|
|
|
render(h) {
|
|
return <div class={bem()}>{this.slots()}</div>;
|
|
}
|
|
});
|