import BasicNumberView from '../../basic/number/view' import { formInputViewProps } from '../../form-input-props' import { useFormView } from '../../../hooks/form-input' import { useRange } from './use-range' import './index.less' export default { props: formInputViewProps, setup (props) { const { securityConfig, proxyOtherValue } = useFormView(props) const { joint } = useRange(props) // 此时min max 无效不需要特殊处理 return () =>
{joint.value}
} }