21 lines
280 B
Vue
21 lines
280 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> |