mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
16 lines
465 B
JavaScript
16 lines
465 B
JavaScript
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),
|
|
}
|