mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-12 12:53:42 +08:00
18 lines
306 B
Vue
18 lines
306 B
Vue
<template>
|
||
<web-site-link label="github地址:" :link="link" />
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import WebSiteLink from './WebSiteLink.vue';
|
||
|
||
defineOptions({ name: 'GithubLink' });
|
||
|
||
interface Props {
|
||
/** github链接 */
|
||
link: string;
|
||
}
|
||
|
||
defineProps<Props>();
|
||
</script>
|
||
<style scoped></style>
|