28 lines
434 B
Vue
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>
|