vueJava/nuxt/components/layout/header.vue

27 lines
655 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>
<router-link to="/admin/login" style="color: #1890ff">
로그아웃
</router-link>
<!-- <a-col>-->
<!-- <a-button @click="'#'">-->
<!-- <template #icon>-->
<!-- <LogoutOutlined />-->
<!-- </template>-->
<!-- 로그아웃-->
<!-- </a-button>-->
<!-- </a-col>-->
</a-row>
</template>