Add initial Code
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<script setup lang="ts">
|
||||
// import AuthLayout from '@/layouts/auth/AuthSimpleLayout.vue';
|
||||
// import AuthLayout from '@/layouts/auth/AuthCardLayout.vue';
|
||||
import AuthLayout from '@/layouts/auth/AuthSplitLayout.vue';
|
||||
|
||||
defineProps<{
|
||||
title?: string;
|
||||
description?: string;
|
||||
}>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<AuthLayout :title="title" :description="description">
|
||||
<slot />
|
||||
</AuthLayout>
|
||||
</template>
|
||||
Reference in New Issue
Block a user