From 26d4d75fcdfab43023d2b39186d1576a0d5edf20 Mon Sep 17 00:00:00 2001 From: clkim Date: Thu, 22 Jan 2026 10:00:50 +0900 Subject: [PATCH] =?UTF-8?q?fix.=20pc=EC=97=90=EC=84=9C=EB=8A=94=20mobile?= =?UTF-8?q?=20gnb=20=EB=8B=AB=ED=9E=88=EB=8F=84=EB=A1=9D=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layers/components/layouts/Header.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/layers/components/layouts/Header.vue b/layers/components/layouts/Header.vue index 5ff43a4..28f0cda 100644 --- a/layers/components/layouts/Header.vue +++ b/layers/components/layouts/Header.vue @@ -174,6 +174,9 @@ onMounted(() => { // 화면 크기 변경 시 오버플로우 재계산 watch(width, () => { throttledCalculateOverflow() + if (isMenuOpen.value && breakpoints.value.isDesktop) { + handleMenuClose() + } }) })