Add first post for monday, add external posts from other authors, add components for internal and external links
14 lines
239 B
Vue
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>
|