[라우터 방식 변경]

This commit is contained in:
2025-09-24 16:35:52 +09:00
parent f9dde4eb09
commit 19bda71444
5 changed files with 19 additions and 25 deletions

View File

@@ -55,10 +55,10 @@ const subMenus = computed(() => {
}));
});
function handleMenuChange(_menuCode: string) {
async function handleMenuChange(_menuCode: string) {
if (activeMenu.value === "HOME") {
showSubmenuBar.value = false;
router.push("/");
await navigateTo("/");
} else {
showSubmenuBar.value = true;
}