1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- import defprops from '../../libs/config/props';
- export default {
- props: {
-
- name: {
- type: String,
- default: defprops.checkboxGroup.name
- },
-
-
- modelValue: {
- type: Array,
- default: defprops.checkboxGroup.value
- },
-
-
-
- value: {
- type: Array,
- default: defprops.checkboxGroup.value
- },
-
-
- shape: {
- type: String,
- default: defprops.checkboxGroup.shape
- },
-
- disabled: {
- type: Boolean,
- default: defprops.checkboxGroup.disabled
- },
-
- activeColor: {
- type: String,
- default: defprops.checkboxGroup.activeColor
- },
-
- inactiveColor: {
- type: String,
- default: defprops.checkboxGroup.inactiveColor
- },
-
- size: {
- type: [String, Number],
- default: defprops.checkboxGroup.size
- },
-
- placement: {
- type: String,
- default: defprops.checkboxGroup.placement
- },
-
- labelSize: {
- type: [String, Number],
- default: defprops.checkboxGroup.labelSize
- },
-
- labelColor: {
- type: [String],
- default: defprops.checkboxGroup.labelColor
- },
-
- labelDisabled: {
- type: Boolean,
- default: defprops.checkboxGroup.labelDisabled
- },
-
- iconColor: {
- type: String,
- default: defprops.checkboxGroup.iconColor
- },
-
- iconSize: {
- type: [String, Number],
- default: defprops.checkboxGroup.iconSize
- },
-
- iconPlacement: {
- type: String,
- default: defprops.checkboxGroup.iconPlacement
- },
-
- borderBottom: {
- type: Boolean,
- default: defprops.checkboxGroup.borderBottom
- }
- }
- }
|