123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- import { defineMixin } from '../../libs/vue'
- import defProps from '../../libs/config/props.js'
- export const props = defineMixin({
- 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
- }
- }
- })
|