jointrashposs/pages/test.vue
2023-09-23 19:07:45 +09:00

13 lines
206 B
Vue

<template>
<div>
<GNuxtLink :to="localePath('/docs///')">Link</GNuxtLink>
</div>
</template>
<script setup lang="ts">
const localePath = useLocalePath();
</script>
<style scoped>
</style>