From 7fdcb1eace37fb7ad15c4f360926d747229cd42e Mon Sep 17 00:00:00 2001 From: jorgep Date: Mon, 25 Nov 2024 16:53:12 +0100 Subject: [PATCH] chore: refs #8113 drop console log --- src/components/ui/VnPaginate.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/VnPaginate.vue b/src/components/ui/VnPaginate.vue index a7c3f77e7..91fe6e0f3 100644 --- a/src/components/ui/VnPaginate.vue +++ b/src/components/ui/VnPaginate.vue @@ -101,7 +101,7 @@ const arrayData = useArrayData(props.dataKey, { mapKey: props.mapKey, }); const store = arrayData.store; -console.log('store', store); + onMounted(async () => { if (props.autoLoad && !store.data?.length) await fetch(); mounted.value = true;