123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- export default {
- props: {
-
- loading: {
- type: Boolean,
- default: uni.$u.props.switch.loading
- },
-
- disabled: {
- type: Boolean,
- default: uni.$u.props.switch.disabled
- },
-
- size: {
- type: [String, Number],
- default: uni.$u.props.switch.size
- },
-
- activeColor: {
- type: String,
- default: uni.$u.props.switch.activeColor
- },
-
- inactiveColor: {
- type: String,
- default: uni.$u.props.switch.inactiveColor
- },
-
- value: {
- type: [Boolean, String, Number],
- default: uni.$u.props.switch.value
- },
-
- activeValue: {
- type: [String, Number, Boolean],
- default: uni.$u.props.switch.activeValue
- },
-
- inactiveValue: {
- type: [String, Number, Boolean],
- default: uni.$u.props.switch.inactiveValue
- },
-
- asyncChange: {
- type: Boolean,
- default: uni.$u.props.switch.asyncChange
- },
-
- space: {
- type: [String, Number],
- default: uni.$u.props.switch.space
- }
- }
- }
|