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>
|