11 lines
182 B
Vue
Executable file
11 lines
182 B
Vue
Executable file
<template>
|
|
<span :class="css">
|
|
{{ content }}
|
|
</span>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { RichTextSpan } from './Types'
|
|
|
|
defineProps<RichTextSpan>()
|
|
</script>
|