wf4/app/components/Link/Internal.vue
webfussel 0a481fee5e add: first post, external posts, new comps
Add first post for monday, add external posts from other authors, add components for internal and external links
2025-07-11 13:32:59 +02:00

14 lines
214 B
Vue

<template>
<NuxtLink class="inline-flex-row text" :to="url">
<slot/>
<IconLinkInternal/>
</NuxtLink>
</template>
<script setup lang="ts">
type Props = {
url: string
}
defineProps<Props>()
</script>