Files
librodrome/app/components/book/ChapterContent.vue
2026-02-20 12:55:10 +01:00

12 lines
173 B
Vue

<template>
<article class="prose">
<ContentRenderer :value="content" />
</article>
</template>
<script setup lang="ts">
defineProps<{
content: any
}>()
</script>