feat: 代码调整

This commit is contained in:
2025-07-24 23:59:31 +08:00
parent 17f4f0fb8b
commit 5321b27176
5 changed files with 68 additions and 26 deletions

View File

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