jointrashposs/pages/test.vue

13 lines
207 B
Vue
Raw Normal View History

2023-09-23 12:07:45 +02:00
<template>
<div>
<GNuxtLink :to="localePath('/docs///')">Link</GNuxtLink>
</div>
</template>
<script setup lang="ts">
const localePath = useGLocalePath();
2023-09-23 12:07:45 +02:00
</script>
<style scoped>
</style>