Capital/components/RouterLink.vue
2024-03-17 01:15:11 +08:00

8 lines
151 B
Vue

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