fix: refs #6238 use .value prop

This commit is contained in:
Jorge Penadés 2024-06-12 13:45:17 +02:00
parent 1052e9eb21
commit 2641489d83
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ const modelValue = computed(
() => $props.model ?? `formModel_${route?.meta?.title ?? route.name}`
);
const componentIsRendered = ref(false);
const arrayData = useArrayData(modelValue);
const arrayData = useArrayData(modelValue.value);
const isLoading = ref(false);
// Si elegimos observar los cambios del form significa que inicialmente las actions estaran deshabilitadas
const isResetting = ref(false);