mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-12 12:53:42 +08:00
24 lines
508 B
Vue
24 lines
508 B
Vue
<template>
|
|
<hover-container
|
|
tooltip-content="github"
|
|
class="w-40px h-full"
|
|
:inverted="theme.header.inverted"
|
|
@click="handleClickLink"
|
|
>
|
|
<icon-mdi-github class="text-20px" />
|
|
</hover-container>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { useThemeStore } from '@/store';
|
|
|
|
defineOptions({ name: 'GithubSite' });
|
|
|
|
const theme = useThemeStore();
|
|
function handleClickLink() {
|
|
window.open('https://github.com/honghuangdc/soybean-admin', '_blank');
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|