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

9 lines
150 B
Vue

<template>
{{ content }}
</template>
<script setup lang="ts">
import type { RichTextPlain } from './Types'
defineProps<RichTextPlain>()
</script>