From 14c2fccc56c08bb493810fc830455fcfbac986e2 Mon Sep 17 00:00:00 2001 From: ronger Date: Mon, 11 Mar 2024 08:12:06 +0800 Subject: [PATCH] =?UTF-8?q?fix(component):=20=E4=BF=AE=E5=A4=8D=E8=81=8A?= =?UTF-8?q?=E5=A4=A9=E7=95=8C=E9=9D=A2=E6=B8=B2=E6=9F=93=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/chats/_account.vue | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/pages/chats/_account.vue b/pages/chats/_account.vue index f3db671..cead88b 100644 --- a/pages/chats/_account.vue +++ b/pages/chats/_account.vue @@ -131,15 +131,23 @@ export default { tab: '\t', cdn: apiConfig.VDITOR, cache: { - enable: this.postId ? false : true, - id: this.postId ? this.postId : '', + enable: false }, after() { _ts.contentEditor.setValue(data.value ? data.value : ''); }, preview: { + hljs: { + enable: true, + lineNumber: true, + style: 'github' + }, markdown: { toc: true, + autoSpace: true + }, + math: { + inlineDigit: true }, delay: 500, mode: data.mode, @@ -188,7 +196,9 @@ export default { }); _ts.contentEditor.setValue('') _ts.$axios.$post('/api/openai/new-chat', _ts.messages).then(async res => { - const html = await Vue.Vditor.md2html(_ts.message); + const html = await Vue.Vditor.md2html(_ts.message, { + cdn: apiConfig.VDITOR + }); _ts.messages.push({ to: _ts.user.account, from: _ts.to.account,