wechat-article / components /base /ExternalLink.vue
asemxin2000's picture
Deploy wechat-article-exporter to Space
6e41657 verified
Raw
History Blame Contribute Delete
246 Bytes
<script setup lang="ts">
interface Props {
href: string;
text: string;
}
defineProps<Props>();
</script>
<template>
<a :href="href" target="_blank" class="underline text-blue-600 underline-offset-2">{{ text }}</a>
</template>