wf4/app/components/Link/External.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
239 B
Vue

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