|
@@ -59,7 +59,7 @@ const values = useFormValues();
|
|
const errors = useFieldError(fieldName);
|
|
const errors = useFieldError(fieldName);
|
|
const fieldComponentRef = useTemplateRef<HTMLInputElement>('fieldComponentRef');
|
|
const fieldComponentRef = useTemplateRef<HTMLInputElement>('fieldComponentRef');
|
|
const formApi = formRenderProps.form;
|
|
const formApi = formRenderProps.form;
|
|
-const compact = formRenderProps.compact;
|
|
|
|
|
|
+const compact = computed(() => formRenderProps.compact);
|
|
const isInValid = computed(() => errors.value?.length > 0);
|
|
const isInValid = computed(() => errors.value?.length > 0);
|
|
|
|
|
|
const FieldComponent = computed(() => {
|
|
const FieldComponent = computed(() => {
|