Files
DAV/app.vue
2024-11-30 16:42:35 +01:00

13 lines
296 B
Vue

<template>
<div>
<ContentRenderer :value="doc" /> <!-- Render the markdown content -->
</div>
</template>
<script setup>
// Fetch the 'markdown.md' content file asynchronously
const { data: doc } = await useAsyncData('markdownDoc', () =>
queryContent('markdown').findOne()
)
</script>