ledgerrz/resources/js/layouts/AuthLayout.vue
2026-06-15 00:30:57 +02:00

15 lines
323 B
Vue

<script setup lang="ts">
import AuthLayout from '@/layouts/auth/AuthSimpleLayout.vue';
const { title = '', description = '' } = defineProps<{
title?: string;
description?: string;
}>();
</script>
<template>
<AuthLayout :title="title" :description="description">
<slot />
</AuthLayout>
</template>