You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
465 B
16 lines
465 B
7 years ago
|
import PropTypes from '../_util/vue-types'
|
||
|
|
||
|
export const switchPropTypes = {
|
||
|
prefixCls: PropTypes.string,
|
||
|
disabled: PropTypes.bool.def(false),
|
||
|
checkedChildren: PropTypes.any,
|
||
|
unCheckedChildren: PropTypes.any,
|
||
|
// onChange: PropTypes.func,
|
||
|
// onMouseUp: PropTypes.func,
|
||
|
// onClick: PropTypes.func,
|
||
|
tabIndex: PropTypes.number,
|
||
|
checked: PropTypes.bool.def(false),
|
||
|
defaultChecked: PropTypes.bool.def(false),
|
||
|
autoFocus: PropTypes.bool.def(false),
|
||
|
}
|