Models refactor + Basic functionnalities
Some checks failed
linter / quality (push) Failing after 3m25s
tests / ci (push) Failing after 12m2s

This commit is contained in:
2025-08-26 12:12:02 +02:00
parent 715d2a884a
commit 55a52086c1
49 changed files with 1074 additions and 269 deletions

View File

@@ -3,6 +3,7 @@ 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 {
@@ -16,7 +17,11 @@ withDefaults(defineProps<Props>(), {
<template>
<AppShell variant="sidebar">
<AppSidebar />
<AppSidebar>
<template #sidebar-content>
<SidebarResumeList />
</template>
</AppSidebar>
<AppContent variant="sidebar" class="overflow-x-hidden">
<AppSidebarHeader :breadcrumbs="breadcrumbs" />
<slot />