feat: Establish core application layout, global styles, and theme mode management.

This commit is contained in:
supalerk-ar66 2026-01-26 14:03:56 +07:00
parent a2ce1d79a2
commit 0e095b35c5
4 changed files with 79 additions and 30 deletions

View file

@ -10,6 +10,9 @@ const leftDrawerOpen = ref(false)
const toggleLeftDrawer = () => {
leftDrawerOpen.value = !leftDrawerOpen.value
}
// Initialize global theme management
useThemeMode()
</script>
<template>