soybean-admin/src/layouts/common/GlobalHeader/components/GithubSite.vue

13 lines
378 B
Vue

<template>
<hover-container tooltip-content="github" class="w-40px h-full">
<a href="https://github.com/honghuangdc/soybean-admin" target="_blank" class="flex-center">
<icon-mdi-github class="text-20px text-[#666]" />
</a>
</hover-container>
</template>
<script lang="ts" setup>
import { HoverContainer } from '@/components';
</script>
<style scoped></style>