mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-03-06 13:18:04 +00:00
laravel inertia
This commit is contained in:
18
laravel-inertia/resources/js/layouts/AppLayout.vue
Normal file
18
laravel-inertia/resources/js/layouts/AppLayout.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user