Commit ac54e893 authored by nick zheng's avatar nick zheng

Merge branch 'beta' of https://gitlab.gsstcloud.com/poc/poc-fe into beta

parents aaa0744b 1f48755c
<script setup lang="ts">
import MarkdownRender from '@/components/markdown-render/markdown-render.vue'
interface Props {
title: string
rawTextContent: string
}
const { rawTextContent, title } = defineProps<Props>()
</script>
<template>
<div class="rounded-[10px] bg-[#f3f5f9] p-[14px]">
<div class="mb-[12px]">
<i class="iconfont icon-tongyi font-600 text-[14px] text-[#6ccb59]"></i>
<span class="ml-[5px] text-[14px] text-[#999]">{{ title }}</span>
</div>
<MarkdownRender ref="markdownRenderRef" :raw-text-content="rawTextContent" dark-theme color="#fff" />
</div>
</template>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment