디자인 업데이트

This commit is contained in:
이진기
2024-11-09 16:52:25 +09:00
parent 84f32cc758
commit 21ff8742f7
11 changed files with 9690 additions and 191 deletions

View File

@@ -1,10 +1,9 @@
<script setup lang="ts">
import { useAuthStore } from '~/stores/login';
import locale from 'ant-design-vue/es/locale/ko_KR';
import { DEFAULT_THEME } from '~/constants/theme/ui';
import { UserOutlined } from '@ant-design/icons-vue';
const authStore = useAuthStore();
const { authorization } = storeToRefs(authStore);
const authorization = ref('관리자')
</script>
<template>
@@ -19,7 +18,7 @@ const { authorization } = storeToRefs(authStore);
<UserOutlined />
</template>
</a-avatar>
<span class="text-white">{{ authorization.memberName }}</span>
<span class="text-white">{{ authorization }}</span>
</a-space>
</a-col>
</a-row>
@@ -39,3 +38,5 @@ const { authorization } = storeToRefs(authStore);
</a-layout>
</a-config-provider>
</template>
<style scoped></style>