import { useFormView } from '@cip/components/hooks/form-input' import { formInputViewProps } from '../../form-input-props' import { computed } from 'vue' export default { props: formInputViewProps, setup (props) { const { proxyOtherValue } = useFormView(props, { maxOtherKey: 3 }) const protocol = computed(() => { return proxyOtherValue[0].value || 'http:' }) return () =>
{protocol.value}//{props.modelValue}{proxyOtherValue[1].value ? `:${proxyOtherValue[1].value}` : ''}{proxyOtherValue[2].value}
} }