mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
26 lines
372 B
JavaScript
26 lines
372 B
JavaScript
/**
|
|
* Common Switch Props
|
|
*/
|
|
|
|
export default {
|
|
props: {
|
|
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'
|
|
}
|
|
}
|
|
};
|