From f7fe6db8a3f0caad92741f771072d82432035cc8 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 23 Feb 2024 16:10:03 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E6=95=B0=E6=8D=AE=E9=9B=86):=20=E6=A0=91?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E4=BE=A7=E8=BE=B9=E6=A0=8F=E6=96=B0=E5=A2=9E?= =?UTF-8?q?=E5=B1=95=E5=BC=80=E3=80=81=E6=94=B6=E8=B5=B7=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/common/DeResourceArrow.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/core-frontend/src/views/common/DeResourceArrow.vue b/core/core-frontend/src/views/common/DeResourceArrow.vue index 37f22dc440..584db15175 100644 --- a/core/core-frontend/src/views/common/DeResourceArrow.vue +++ b/core/core-frontend/src/views/common/DeResourceArrow.vue @@ -2,7 +2,7 @@ import { ref } from 'vue' const sideTreeStatus = ref(true) const emits = defineEmits(['changeSideTreeStatus']) -const handelClick = val => { +const handleClick = val => { emits('changeSideTreeStatus', val) sideTreeStatus.value = val } @@ -10,7 +10,7 @@ const handelClick = val => {