vant/packages/switch/shared.ts

24 lines
335 B
TypeScript

/**
* Common Switch Props
*/
export const switchProps = {
value: null,
loading: Boolean,
disabled: Boolean,
activeColor: String,
inactiveColor: String,
activeValue: {
type: null,
default: true
},
inactiveValue: {
type: null,
default: false
},
size: {
type: String,
default: '30px'
}
};