Files
cook/pages/[...slug].vue
2023-07-30 03:08:42 +08:00

9 lines
196 B
Vue

<template>
<main class="markdown-body text-left">
<ContentDoc v-slot="{ doc }">
<h1>{{ doc.title }}</h1>
<ContentRenderer :value="doc" />
</ContentDoc>
</main>
</template>