diff --git a/pages/dashboard.vue b/pages/dashboard.vue index e6cf586..242454c 100644 --- a/pages/dashboard.vue +++ b/pages/dashboard.vue @@ -127,4 +127,12 @@ const logOut = async () => { await logout(); return navigateTo("/login"); }; + +onMounted(() => { + if (mdAndDown.value) { + return; + } + + drawer.value = true; +})