ruoyi-plus-soybean/src/components/custom/WebSiteLink.vue

22 lines
330 B
Vue
Raw Normal View History

2022-01-24 00:36:38 +08:00
<template>
<p>
<span>{{ label }}</span>
<a class="text-blue-500" :href="link" target="_blank">
{{ link }}
</a>
</p>
</template>
<script setup lang="ts">
interface Props {
/** 网址名称 */
label: string;
/** 网址链接 */
link: string;
}
defineProps<Props>();
</script>
2022-01-24 00:36:38 +08:00
<style scoped></style>