23 lines
501 B
Vue
23 lines
501 B
Vue
<script setup lang="ts">
|
|
import { LogoutOutlined } from '@ant-design/icons-vue';
|
|
</script>
|
|
|
|
<template>
|
|
<a-row justify="end" class="d-flex align-center pr-4" style="height: 100%">
|
|
<a-col>
|
|
<a-button type="primary" @click="'#'" class="mr-5">
|
|
개인정보관리
|
|
</a-button>
|
|
</a-col>
|
|
|
|
<a-col>
|
|
<a-button @click="'#'">
|
|
<template #icon>
|
|
<LogoutOutlined />
|
|
</template>
|
|
로그아웃
|
|
</a-button>
|
|
</a-col>
|
|
</a-row>
|
|
</template>
|