UNPKG

vant-fork

Version:

Lightweight Mobile UI Components built on Vue

28 lines (25 loc) 489 B
import create from '../utils/create'; export default create({ render: function render() { var _vm = this; var _h = _vm.$createElement; var _c = _vm._self._c || _h; return _c('div', { class: _vm.b() }, [_vm._t("default")], 2); }, name: 'checkbox-group', props: { value: Array, disabled: Boolean, max: { default: 0, type: Number } }, watch: { value: function value(val) { this.$emit('change', val); } } });