31 lines
903 B
Vue
31 lines
903 B
Vue
<script setup lang="ts">
|
|
import AppContent from '@/components/AppContent.vue';
|
|
import AppShell from '@/components/AppShell.vue';
|
|
import AppSidebar from '@/components/AppSidebar.vue';
|
|
import AppSidebarHeader from '@/components/AppSidebarHeader.vue';
|
|
import SidebarResumeList from '@/components/SidebarResumeList.vue';
|
|
import type { BreadcrumbItemType } from '@/types';
|
|
|
|
interface Props {
|
|
breadcrumbs?: BreadcrumbItemType[];
|
|
}
|
|
|
|
withDefaults(defineProps<Props>(), {
|
|
breadcrumbs: () => [],
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<AppShell variant="sidebar">
|
|
<AppSidebar>
|
|
<template #sidebar-content>
|
|
<SidebarResumeList />
|
|
</template>
|
|
</AppSidebar>
|
|
<AppContent variant="sidebar" class="overflow-x-hidden">
|
|
<!-- <AppSidebarHeader :breadcrumbs="breadcrumbs" /> -->
|
|
<slot />
|
|
</AppContent>
|
|
</AppShell>
|
|
</template>
|