Files
DAV/app.vue
2024-11-30 23:35:20 +01:00

13 lines
320 B
Vue

<template>
<div class="content-wrapper">
<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>