11 lines
No EOL
238 B
Vue
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> |