import PropTypes from '../../_util/vue-types' import Touchable from '../../vc-m-feedback' const InputHandler = { props: { prefixCls: PropTypes.string, disabled: PropTypes.bool, }, render () { const { prefixCls, disabled } = this.$props const touchableProps = { props: { disabled, activeClassName: `${prefixCls}-handler-active`, }, on: this.$listeners, } const spanProps = { attrs: this.$attrs, } return ( {this.$slots.default} ) }, } export default InputHandler