Files
dockerfile.nyxtex.com/resources/js/layouts/AuthLayout.vue
2026-04-23 15:24:40 +03: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>