Update the layout to accommodate mobile

This commit is contained in:
Rafi
2023-02-12 17:37:46 +08:00
parent 60f8454578
commit 42c9864487

View File

@@ -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)
</script>
<template>