mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
29 lines
363 B
Vue
29 lines
363 B
Vue
<template>
|
|
<div :class="b()">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import create from '../utils/create';
|
|
|
|
export default create({
|
|
name: 'checkbox-group',
|
|
|
|
props: {
|
|
value: Array,
|
|
disabled: Boolean,
|
|
max: {
|
|
default: 0,
|
|
type: Number
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
value(val) {
|
|
this.$emit('change', val);
|
|
}
|
|
}
|
|
});
|
|
</script>
|