feat: fix menu

This commit is contained in:
Ron 2025-04-14 23:00:18 +03:00
parent 2a8552d06f
commit 867ba7746d
1 changed files with 8 additions and 0 deletions

View File

@ -127,4 +127,12 @@ const logOut = async () => {
await logout();
return navigateTo("/login");
};
onMounted(() => {
if (mdAndDown.value) {
return;
}
drawer.value = true;
})
</script>