44 lines
1 KiB
Vue
44 lines
1 KiB
Vue
<script lang="ts" setup>
|
|
import { computed } from 'vue'
|
|
import { normalizeLink } from '../support/utils'
|
|
import VPIconExternalLink from './icons/VPIconExternalLink.vue'
|
|
import { EXTERNAL_URL_RE } from '../../shared'
|
|
|
|
const props = defineProps<{
|
|
tag?: string
|
|
href?: string
|
|
noIcon?: boolean
|
|
target?: string
|
|
rel?: string
|
|
}>()
|
|
|
|
const tag = computed(() => props.tag ?? props.href ? 'a' : 'span')
|
|
const isExternal = computed(() => props.href && EXTERNAL_URL_RE.test(props.href))
|
|
</script>
|
|
|
|
<template>
|
|
<component
|
|
:is="tag"
|
|
class="VPLink"
|
|
:class="{ link: href }"
|
|
:href="href ? normalizeLink(href) : undefined"
|
|
:target="target || (isExternal ? '_blank' : undefined)"
|
|
:rel="rel || (isExternal ? 'noreferrer' : undefined)"
|
|
>
|
|
<slot />
|
|
<VPIconExternalLink v-if="isExternal && !noIcon" class="icon" />
|
|
</component>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.icon {
|
|
display: inline-block;
|
|
margin-top: -1px;
|
|
margin-left: 4px;
|
|
width: 11px;
|
|
height: 11px;
|
|
fill: var(--vp-c-text-3);
|
|
transition: fill 0.25s;
|
|
flex-shrink: 0;
|
|
}
|
|
</style>
|