ADD: RichText

Added RichText system
This commit is contained in:
webfussel 2025-02-21 19:15:20 +01:00
parent 311894d6d0
commit b014d31577
9 changed files with 250 additions and 95 deletions

View file

@ -0,0 +1,9 @@
<template>
{{ content }}
</template>
<script setup lang="ts">
import type { RichTextPlain } from './Types'
defineProps<RichTextPlain>()
</script>