yxl
2025-02-19 3dc17dbcb1fb1d64c469deed1518d1817846b452
src/components/Chat/chatList.vue
@@ -113,6 +113,12 @@
                  </div>
                  <div v-else-if="res.type == 'stream'">
                    <div
                      v-if="res.thinkMsg"
                      v-html="res.val"
                      class="think-markdown"
                    ></div>
                    <div
                      v-else
                      v-html="res.val"
                      class="markdown-container"
                    ></div>
@@ -430,6 +436,14 @@
.markdown-container {
  padding: 10px;
  white-space: pre-wrap;
  color: #fff;
  font-size: 16px;
}
.think-markdown {
  font-size: 13px;
  color: #ccc;
  border-left: 1px solid #ccc;
  padding-left: 5px;
}
</style>
<style scoped>