9 lines
196 B
Vue
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>
|