Files
YGChatCS/pages/chat/ChatMarkdown.vue
2025-07-24 23:59:31 +08:00

19 lines
225 B
Vue

<template>
<view>
<ua-markdown :source="text" />
</view>
</template>
<script setup>
import { defineProps } from "vue";
defineProps({
text: {
type: String,
default: ''
}
})
</script>
<style>
</style>