Files
CVAtron/resources/js/layouts/AppLayout.vue
Matthias Guillitte 0eaf20efa7
Some checks failed
linter / quality (push) Successful in 3m37s
tests / ci (push) Failing after 8m4s
Basic Laravel project
2025-08-15 17:55:11 +02:00

19 lines
377 B
Vue

<script setup lang="ts">
import AppLayout from '@/layouts/app/AppSidebarLayout.vue';
import type { BreadcrumbItemType } from '@/types';
interface Props {
breadcrumbs?: BreadcrumbItemType[];
}
withDefaults(defineProps<Props>(), {
breadcrumbs: () => [],
});
</script>
<template>
<AppLayout :breadcrumbs="breadcrumbs">
<slot />
</AppLayout>
</template>