Files
aranroig.com/frontend/app/pages/blog/[slug].vue
BinarySandia04 814c44c827
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 34s
Hothotfic
2026-03-20 23:16:34 +01:00

36 lines
763 B
Vue

<script setup>
import PageHeader from '~/components/parts/PageHeader.vue';
const slug = useRoute().params.slug;
const { locale } = useI18n();
const { data: post } = await useAsyncData(`blog-${slug}`, () =>
queryCollection(`blog`).path(`/blog/${locale.value}/${slug}`).first()
, {watch: [locale]})
</script>
<template>
<!-- Render the blog post as Prose & Vue components -->
<PageHeader></PageHeader>
<Container>
<ContentRenderer :value="post" class="blog" />
</Container>
<Footer></Footer>
</template>
<style lang="scss">
.blog {
h2 {
a {
text-decoration: none;
color: var(--color-text);
}
}
img {
margin: auto;
display: flex;
max-height: 400px;
}
}
</style>