This commit is contained in:
Benjamin Lu
2025-12-09 02:46:49 -08:00
parent 38b589c88e
commit 3ce8cca664

View File

@@ -64,12 +64,9 @@ import { useSidebarTabStore } from '@/stores/workspace/sidebarTabStore'
type OverlayState = 'hidden' | 'empty' | 'expanded' type OverlayState = 'hidden' | 'empty' | 'expanded'
const props = withDefaults( const props = defineProps<{
defineProps<{ expanded?: boolean
expanded?: boolean }>()
}>(),
{}
)
const emit = defineEmits<{ const emit = defineEmits<{
(e: 'update:expanded', value: boolean): void (e: 'update:expanded', value: boolean): void