Files
YGChatCS/src/pages/ChatMain/ChatMarkdown/index.vue
2026-04-23 16:37:26 +08:00

28 lines
434 B
Vue

<template>
<view class="container">
<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>
.container {
width: 100%;
}
.container ::v-deep image,
.container ::v-deep video,
.container ::v-deep iframe {
width: 100% !important;
}
</style>