Files
wireguard-dashboard/web/src/layout/components/header/components/GithubSite.vue
coward 12e551b4e9
Some checks failed
continuous-integration/drone/tag Build is failing
:art:添加静态打包
2024-08-21 09:10:01 +08:00

12 lines
252 B
Vue

<template>
<n-icon mr-20 size="18" style="cursor: pointer" @click="handleLinkClick">
<icon-mdi:github />
</n-icon>
</template>
<script setup>
function handleLinkClick() {
window.open('https://github.com/zclzone/vue-naive-admin')
}
</script>