15 lines
236 B
Vue
15 lines
236 B
Vue
<script setup lang="ts">
|
|
const props = defineProps({
|
|
to: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
})
|
|
|
|
const localePath = useLocalePath()
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtLink :to="localePath(props.to)"><slot /></NuxtLink>
|
|
</template>
|