fix: refs #7598 fix evt & .value

This commit is contained in:
Jorge Penadés 2024-06-18 09:44:50 +02:00
parent 37af8ba8f5
commit 9725874d5d
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ const $props = defineProps({
const emit = defineEmits(['onFetch', 'onDataSav7ed']); const emit = defineEmits(['onFetch', 'onDataSav7ed']);
const modelValue = computed( const modelValue = computed(
() => $props.model ?? `formModel_${route?.meta?.title ?? route.name}` () => $props.model ?? `formModel_${route?.meta?.title ?? route.name}`
); ).value;
const componentIsRendered = ref(false); const componentIsRendered = ref(false);
const arrayData = useArrayData(modelValue); const arrayData = useArrayData(modelValue);
const isLoading = ref(false); const isLoading = ref(false);