mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-20 18:46:39 +08:00
24 lines
368 B
Vue
24 lines
368 B
Vue
<script setup lang="ts">
|
|
defineOptions({ name: 'WebSiteLink' });
|
|
|
|
interface Props {
|
|
/** Web site name */
|
|
label: string;
|
|
/** Web site link */
|
|
link: string;
|
|
}
|
|
|
|
defineProps<Props>();
|
|
</script>
|
|
|
|
<template>
|
|
<p>
|
|
<span>{{ label }}</span>
|
|
<a class="text-blue-500" :href="link" target="#">
|
|
{{ link }}
|
|
</a>
|
|
</p>
|
|
</template>
|
|
|
|
<style scoped></style>
|