{ props.modelValue.length > 0 && !isFormAppearance && (
{ props.modelValue.length }
{ !props.disabled &&
{ e.stopPropagation(); props.clear() }}/> }
) }
{ props.placeholder && !(isFormAppearance && props.modelValue.length > 0)
&& !(props.modelValue.length > 0 && props.title) && (
{ props.placeholder }
) }
{ isFormAppearance && props.isSingle && props.modelValue.length > 0 && [
props.leftSlot?.(props.modelValue),
{ props.modelValue[0].name }
,
props.resetable && !props.disabled &&
,
] }
{ props.resetable && props.modelValue.length > 0 &&
}
{ !props.disabled &&
}
{ props.search !== undefined && !props.hideSearch && (
) }
{ props.isLoadingPrev && }
По вашему запросу ничего не найдено
{ !props.disabled && (
<>
{ typeof props.errors === 'string' && props.errors.length > 0
?
{ props.errors }
: Array.isArray(props.errors) && props.errors.length > 0
? props.errors.map((error) =>
{ error }
)
: props.description
?
{ props.description }
: '' }
>
) }
)
}
},
})
}