13 lines
296 B
Vue
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>
|