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