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