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

11 lines
182 B
Vue

<template>
<span :class="css">
{{ content }}
</span>
</template>
<script setup lang="ts">
import type { RichTextSpan } from './Types'
defineProps<RichTextSpan>()
</script>