From cc086c6182366c2c5dcf1f9c850a081f79882069 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Wed, 19 Mar 2025 11:28:40 +0100 Subject: [PATCH] Testing 6 --- app/components/home/Stats.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/home/Stats.vue b/app/components/home/Stats.vue index cb1bd95..56998cf 100644 --- a/app/components/home/Stats.vue +++ b/app/components/home/Stats.vue @@ -6,6 +6,7 @@ const { locale, locales } = useI18n() const currentLocale = computed(() => locales.value.find(l => l.code === locale.value)) const { data: stats } = await useAsyncData('stats', () => $fetch('/api/stats')) +console.log(stats.value) const { t } = useI18n({ useScope: 'local', })