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', })