Posts

This commit is contained in:
2024-03-17 01:15:11 +08:00
parent f730d58bac
commit 6db1588aa6
9 changed files with 147 additions and 24 deletions

View File

@ -0,0 +1,7 @@
<template>
<nuxt-link v-bind="props" />
</template>
<script setup lang="ts">
const props = defineProps<{ to: string; target: string }>();
</script>