mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
35 lines
560 B
TypeScript
35 lines
560 B
TypeScript
/**
|
|
* Common Switch Props
|
|
*/
|
|
|
|
export type SharedSwitchProps = {
|
|
size: string;
|
|
value?: any;
|
|
loading?: boolean;
|
|
disabled?: boolean;
|
|
activeValue: any;
|
|
inactiveValue: any;
|
|
activeColor?: string;
|
|
inactiveColor?: string;
|
|
};
|
|
|
|
export const switchProps = {
|
|
value: null as any,
|
|
loading: Boolean,
|
|
disabled: Boolean,
|
|
activeColor: String,
|
|
inactiveColor: String,
|
|
activeValue: {
|
|
type: null as any,
|
|
default: true
|
|
},
|
|
inactiveValue: {
|
|
type: null as any,
|
|
default: false
|
|
},
|
|
size: {
|
|
type: String,
|
|
default: '30px'
|
|
}
|
|
};
|