#5919 locker #338

Merged
jorgep merged 13 commits from 5919-locker into dev 2024-05-13 12:08:48 +00:00
1 changed files with 6 additions and 1 deletions
Showing only changes of commit 455f47d46f - Show all commits

View File

@ -1,5 +1,5 @@
<script setup>
import { onBeforeMount, computed } from 'vue';
import { onBeforeMount, computed, watchEffect } from 'vue';
import { useRoute, onBeforeRouteUpdate } from 'vue-router';
import { useI18n } from 'vue-i18n';
import { useArrayData } from 'src/composables/useArrayData';
@ -47,6 +47,11 @@ if (props.baseUrl) {
}
});
}
watchEffect(() => {
Review

Cuando se hace una llamada a un scope te devuelve un array aunque solo haya solo 1 resultado. En un VnCard solo va a haber 1 registro.

Cuando se hace una llamada a un scope te devuelve un array aunque solo haya solo 1 resultado. En un VnCard solo va a haber 1 registro.
if (Array.isArray(arrayData.store.data))
arrayData.store.data = arrayData.store.data[0];
});
</script>
<template>
<Teleport