wf4/app/components/RichText/Paragraph.vue
webfussel a204be8ddc REMOVE: (Urban) as SEO is okay again
Removed the (Urban) which was added after marriage for better SEO
2025-03-18 12:54:31 +01:00

11 lines
No EOL
238 B
Vue
Executable file

<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>