디자인 업데이트
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user