Files
cook/pages/[...slug].vue
2023-07-30 04:13:06 +08:00

9 lines
201 B
Vue

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