From a2a0e4ff1c4eb56831c990c09082d353e3f0d433 Mon Sep 17 00:00:00 2001 From: insistence <3055204202@qq.com> Date: Wed, 11 Dec 2024 10:01:45 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ruoyi-fastapi-frontend/src/components/Editor/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruoyi-fastapi-frontend/src/components/Editor/index.vue b/ruoyi-fastapi-frontend/src/components/Editor/index.vue index 0a696f2..1bd01ed 100644 --- a/ruoyi-fastapi-frontend/src/components/Editor/index.vue +++ b/ruoyi-fastapi-frontend/src/components/Editor/index.vue @@ -108,7 +108,7 @@ const styles = computed(() => { const content = ref(""); watch(() => props.modelValue, (v) => { if (v !== content.value) { - content.value = v === undefined ? "

" : v; + content.value = v == undefined ? "

" : v; } }, { immediate: true });