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

10 lines
218 B
Vue

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