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 = () => { const toggleTheme = () => {
theme.value = theme.value === 'light' ? 'dark' : 'light' theme.value = theme.value === 'light' ? 'dark' : 'light'
} }
const drawer = ref(false) const drawer = ref(null)
const showAppBar = computed(() => {
return !drawer.value
})
</script> </script>
<template> <template>