lunasqu.ee-nuxt/pages/blog/archive/index.vue

18 lines
335 B
Vue

<template>
<NuxtLayout name="blog">
<BlogArchive :posts="posts" />
</NuxtLayout>
</template>
<script setup lang="ts">
import type { BlogPost } from '~~/lib/types/post';
const { data: posts } = await useFetch<BlogPost[]>(`/api/blog`, {
key: `blog-archive`,
params: {
body: false,
render: false,
},
});
</script>