로그인, 아이디찾기, 비밀번호찾기, 가입시 권장사항 화면 추가

This commit is contained in:
이진기
2024-11-11 18:06:35 +09:00
parent 7f3bd6ef65
commit 940a0320b3
6 changed files with 488 additions and 8 deletions

12
nuxt/layouts/empty.vue Normal file
View File

@@ -0,0 +1,12 @@
<script setup lang="ts">
import locale from 'ant-design-vue/es/locale/ko_KR';
import { DEFAULT_THEME } from '~/constants/theme/ui';
</script>
<template>
<a-config-provider :locale="locale" :theme="DEFAULT_THEME">
<a-row class="w-full h-full">
<slot />
</a-row>
</a-config-provider>
</template>