123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- export default {
- props: {
-
- name: {
- type: [String, Number, Boolean],
- default: uni.$u.props.checkbox.name
- },
-
- shape: {
- type: String,
- default: uni.$u.props.checkbox.shape
- },
-
- size: {
- type: [String, Number],
- default: uni.$u.props.checkbox.size
- },
-
- checked: {
- type: Boolean,
- default: uni.$u.props.checkbox.checked
- },
-
- disabled: {
- type: [String, Boolean],
- default: uni.$u.props.checkbox.disabled
- },
-
- activeColor: {
- type: String,
- default: uni.$u.props.checkbox.activeColor
- },
-
- inactiveColor: {
- type: String,
- default: uni.$u.props.checkbox.inactiveColor
- },
-
- iconSize: {
- type: [String, Number],
- default: uni.$u.props.checkbox.iconSize
- },
-
- iconColor: {
- type: String,
- default: uni.$u.props.checkbox.iconColor
- },
-
- label: {
- type: [String, Number],
- default: uni.$u.props.checkbox.label
- },
-
- labelSize: {
- type: [String, Number],
- default: uni.$u.props.checkbox.labelSize
- },
-
- labelColor: {
- type: String,
- default: uni.$u.props.checkbox.labelColor
- },
-
- labelDisabled: {
- type: [String, Boolean],
- default: uni.$u.props.checkbox.labelDisabled
- }
- }
- }
|