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