20 lines
356 B
Vue
Raw Normal View History

<script lang="ts" setup>
import { isExternal } from "@/utils/validate"
const props = defineProps({
to: {
type: String,
required: true
}
})
</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>