0fa19a7701
- content/fr/blog/test-kotlin-syntax.md: FR test article covering all 4 validation criteria - content/en/blog/test-kotlin-syntax.md: EN version with same slug - app/pages/test.vue: temporary page at /test for visual checkpoint verification - Both articles contain: kotlin code block, NuxtImg image, markdown table, 4 callout types
12 lines
309 B
Vue
12 lines
309 B
Vue
<script setup lang="ts">
|
|
const { data: page } = await useAsyncData('test', () =>
|
|
queryCollection('blog_fr').path('/blog/test-kotlin-syntax').first()
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<article class="prose dark:prose-invert max-w-none p-8">
|
|
<ContentRenderer v-if="page" :value="page" />
|
|
</article>
|
|
</template>
|