mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-25 20:56:44 +08:00
13 lines
378 B
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>
|