#Duplicating content
9 messages · Page 1 of 1 (latest)
<div class="flex flex-col h-screen">
<div class="header text-center font-medium leading-normal">Lista de Postagens</div>
<div class="flex-grow">
<div class="px-10 py-20 min-h-screen">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<ThumbPost v-for="(post, index) in posts" :key="index" :data="post" />
</div>
<DownArrow v-if="!showNoMoreText" class="mt-20" />
<p v-else class="w-full text-center pt-20 pb-10">Sem mais conteúdo para mostrar</p>
</div>
</div>
<AlternativeFooter />
</div>
const { data: postData, error } = await useLazyFetch(`/api/posts/paginate/?page=${page}`) ```
Have you checked your console for hydration mismatches?
Tbh that sounds like prime hydration mismatch territory
Also you only want to have only one root element in your page
I put the content inside the <ClientOnly> tag and it stopped to duplicate, this is a bug not fixed in nuxt3 yet
I highly doubt this is a bug in nuxt