TOPVERSE_Official/components/LocaleNuxtLink.vue

14 lines
204 B
Vue
Raw Normal View History

2023-05-07 16:38:23 +08:00
<script setup lang="ts">
$defineProps<{
href?: string
}>()
const localePath = useLocalePath()
</script>
<template>
<NuxtLink :href="href && localePath(href)">
<slot />
</NuxtLink>
</template>