12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- export default {
- props: {
-
- name: {
- type: String,
- default: uni.$u.props.checkboxGroup.name
- },
-
- value: {
- type: Array,
- default: uni.$u.props.checkboxGroup.value
- },
-
- shape: {
- type: String,
- default: uni.$u.props.checkboxGroup.shape
- },
-
- disabled: {
- type: Boolean,
- default: uni.$u.props.checkboxGroup.disabled
- },
-
- activeColor: {
- type: String,
- default: uni.$u.props.checkboxGroup.activeColor
- },
-
- inactiveColor: {
- type: String,
- default: uni.$u.props.checkboxGroup.inactiveColor
- },
-
- size: {
- type: [String, Number],
- default: uni.$u.props.checkboxGroup.size
- },
-
- placement: {
- type: String,
- default: uni.$u.props.checkboxGroup.placement
- },
-
- labelSize: {
- type: [String, Number],
- default: uni.$u.props.checkboxGroup.labelSize
- },
-
- labelColor: {
- type: [String],
- default: uni.$u.props.checkboxGroup.labelColor
- },
-
- labelDisabled: {
- type: Boolean,
- default: uni.$u.props.checkboxGroup.labelDisabled
- },
-
- iconColor: {
- type: String,
- default: uni.$u.props.checkboxGroup.iconColor
- },
-
- iconSize: {
- type: [String, Number],
- default: uni.$u.props.checkboxGroup.iconSize
- },
-
- iconPlacement: {
- type: String,
- default: uni.$u.props.checkboxGroup.iconPlacement
- },
-
- borderBottom: {
- type: Boolean,
- default: uni.$u.props.checkboxGroup.borderBottom
- }
- }
- }
|