From 246cae644aec64c5d668355c4bc4a2729e8fcfbe Mon Sep 17 00:00:00 2001 From: lostelk Date: Tue, 21 Jan 2025 15:41:30 +0800 Subject: [PATCH] =?UTF-8?q?fix(IconSelect=20component):=20:bug:=20?= =?UTF-8?q?=E5=88=87=E6=8D=A2=20Tab=20name=E4=B8=A2=E5=A4=B1=EF=BC=8C?= =?UTF-8?q?=E5=AF=BC=E8=87=B4=E7=9A=84element=E5=9B=BE=E6=A0=87=E5=9B=9E?= =?UTF-8?q?=E6=98=BE=E4=B8=8D=E6=AD=A3=E7=A1=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/IconSelect/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/IconSelect/index.vue b/src/components/IconSelect/index.vue index 44a4a8ba..006158a1 100644 --- a/src/components/IconSelect/index.vue +++ b/src/components/IconSelect/index.vue @@ -126,7 +126,7 @@ function loadIcons() { } function handleTabClick(tabPane: any) { - activeTab.value = tabPane.name; + activeTab.value = tabPane.props.name; filterIcons(); } -- Gitee