wf4/app/components/RichText/Paragraph.vue
webfussel b014d31577 ADD: RichText
Added RichText system
2025-02-21 19:15:20 +01:00

11 lines
No EOL
238 B
Vue

<template>
<p :class="css">
<RichTextGeneral v-for="element in children" :element="element" />
</p>
</template>
<script setup lang="ts">
import type { RichTextParagraph } from './Types'
defineProps<RichTextParagraph>()
</script>