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