19 lines
345 B
Vue
Raw Normal View History

<script lang="ts" setup>
import { isExternal } from "@/utils/validate"
interface Props {
to: string
}
const props = defineProps<Props>()
</script>
<template>
2022-08-25 16:26:28 +08:00
<a v-if="isExternal(props.to)" :href="props.to" target="_blank" rel="noopener">
<slot />
</a>
2022-08-25 16:26:28 +08:00
<router-link v-else :to="props.to">
<slot />
2022-08-25 16:26:28 +08:00
</router-link>
</template>