Files
YGChatCS/pages/index/components/chat/ChatMarkdown/index.vue
2025-09-21 14:26:04 +08:00

19 lines
274 B
Vue

<template>
<view>
<zero-markdown-view :markdown="text" :aiMode="true"></zero-markdown-view>
</view>
</template>
<script setup>
import { defineProps } from "vue";
defineProps({
text: {
type: String,
default: "",
},
});
</script>
<style scoped></style>