관리자 헤더와 메뉴 목록 디자인 추가

This commit is contained in:
이진기
2024-11-09 16:50:23 +09:00
parent f78f096af5
commit 84f32cc758
87 changed files with 412 additions and 5473 deletions

21
nuxt/common/loading.vue Normal file
View File

@@ -0,0 +1,21 @@
<script setup lang="ts">
import { useLoadingStore } from '~/stores';
const loadingStore = useLoadingStore();
const { isLoading } = storeToRefs(loadingStore);
</script>
<template>
<template v-if="isLoading">
<div
class="top-0 left-0 w-full h-full flex justify-center items-center position-absolute"
style="z-index: 10000000"
>
<a-spin />
</div>
<div
class="top-0 left-0 w-full h-full justify-center items-center position-absolute bg-black"
style="z-index: 9999999; opacity: 0.4"
></div>
</template>
</template>