TOPVERSE_Official/components/LocaleNuxtLink.vue

14 lines
204 B
Vue

<script setup lang="ts">
$defineProps<{
href?: string
}>()
const localePath = useLocalePath()
</script>
<template>
<NuxtLink :href="href && localePath(href)">
<slot />
</NuxtLink>
</template>