fix. 임시 데이터 맞춰 수정

This commit is contained in:
clkim
2025-09-09 22:18:10 +09:00
parent fcd4dc799b
commit 56a1a50312
18 changed files with 492 additions and 259 deletions

View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
const props = defineProps({
to: {
type: String,
default: null,
required: true,
},
});
const localePath = useLocalePath();
</script>
<template>
<NuxtLink :to="localePath(props.to)"><slot></slot></NuxtLink>
</template>