From 42c98644871f2dbb4f5633dd621c5774dfdf4e7c Mon Sep 17 00:00:00 2001 From: Rafi Date: Sun, 12 Feb 2023 17:37:46 +0800 Subject: [PATCH] Update the layout to accommodate mobile --- app.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app.vue b/app.vue index 45b8b33..4be3889 100644 --- a/app.vue +++ b/app.vue @@ -4,10 +4,7 @@ const theme = ref('light') const toggleTheme = () => { theme.value = theme.value === 'light' ? 'dark' : 'light' } -const drawer = ref(false) -const showAppBar = computed(() => { - return !drawer.value -}) +const drawer = ref(null)