import { Divider as VantDivider } from 'vant' import { formInputProps } from '../../form-input-props' import { useFormInput } from '../../../hooks/form-input' export default { props: formInputProps, setup (props, context) { const { width } = useFormInput(props, context) return () => {props.modelValue || props.config.defaultValue} } }