19 lines
274 B
Vue
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>
|