Files
cn-rdms-web/src/components/custom/web-site-link.vue

24 lines
368 B
Vue
Raw Normal View History

2026-03-26 20:18:20 +08:00
<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>