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