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)