tambahan menu mobile

This commit is contained in:
bipproduction
2025-02-17 21:14:47 +08:00
parent 333f575693
commit b6dbd18b89
8 changed files with 83 additions and 39 deletions

View File

@@ -6,7 +6,8 @@ const stateNav = proxy<{
item: MenuItem[] | null
isSearch: boolean,
clear: () => void,
module: string | null
module: string | null,
mobileOpen: boolean
}>({
hover: false,
item: null,
@@ -16,7 +17,8 @@ const stateNav = proxy<{
stateNav.item = null
stateNav.isSearch = false
},
module: null
module: null,
mobileOpen: false
})
export default stateNav