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