ADD: RichText
Added RichText system
This commit is contained in:
parent
311894d6d0
commit
b014d31577
9 changed files with 250 additions and 95 deletions
11
app/components/RichText/String.vue
Normal file
11
app/components/RichText/String.vue
Normal file
|
@ -0,0 +1,11 @@
|
|||
<template>
|
||||
<span :class="css">
|
||||
{{ content }}
|
||||
</span>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import type { RichTextSpan } from './Types'
|
||||
|
||||
defineProps<RichTextSpan>()
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue