From c3d9085a5703a96b9f2eb27653ab3fddffa22024 Mon Sep 17 00:00:00 2001 From: carlossa Date: Fri, 24 Nov 2023 08:10:44 +0100 Subject: [PATCH] refs #6157 minorFix --- src/components/ui/CardDescriptor.vue | 3 --- src/components/ui/VnPaginate.vue | 1 - src/pages/Claim/ClaimList.vue | 2 -- 3 files changed, 6 deletions(-) diff --git a/src/components/ui/CardDescriptor.vue b/src/components/ui/CardDescriptor.vue index 3fa681638..eef2e020b 100644 --- a/src/components/ui/CardDescriptor.vue +++ b/src/components/ui/CardDescriptor.vue @@ -34,7 +34,6 @@ const $props = defineProps({ const slots = useSlots(); const { t } = useI18n(); -defineExpose({ fetch }); const entity = computed(() => useArrayData($props.dataKey).store.data); onMounted(async () => { await getData(); @@ -58,8 +57,6 @@ async function getData() { emit('onFetch', data); } const emit = defineEmits(['onFetch']); - -async function fetch() {}