From 54dfa5139c93dbc3140cbc6eed6cb484393d4c89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=AE=9C=E6=B3=A2?= <760478279@qq.com> Date: Wed, 16 Jul 2025 10:56:43 +0800 Subject: [PATCH] =?UTF-8?q?perf(Thinking):=20=E4=BC=98=E5=8C=96=E6=80=9D?= =?UTF-8?q?=E8=80=83=E7=BB=84=E4=BB=B6=E5=B1=95=E5=BC=80=E6=94=B6=E7=BC=A9?= =?UTF-8?q?=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/core/src/components/Thinking/index.vue | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/core/src/components/Thinking/index.vue b/packages/core/src/components/Thinking/index.vue index cd75b8d5..7d82aa72 100644 --- a/packages/core/src/components/Thinking/index.vue +++ b/packages/core/src/components/Thinking/index.vue @@ -5,7 +5,7 @@ import type { ThinkingStatus } from './types.d.ts'; import { - ArrowUpBold, + ArrowDownBold, CircleCloseFilled, Loading, Opportunity, @@ -40,8 +40,7 @@ watch( // 处理展开/收起 function changeExpand() { - if (props.disabled) - return; + if (props.disabled) return; isExpanded.value = !isExpanded.value; emit('change', { value: isExpanded.value, status: props.status }); emit('update:modelValue', isExpanded.value); @@ -127,7 +126,7 @@ watch( > - +