friends-best/components/LLink.vue
Louis Hollingworth f9e7e5480c
Now has all of the functions as the Astro site.
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-05-09 19:55:32 +01:00

18 lines
394 B
Vue

<template>
<NuxtLink :to="to" class="bg-gray-50 hover:bg-gray-100 dark:bg-slate-700 dark:hover:bg-slate-600 m-4 px-5 py-5 md:px-10 rounded-3xl shadow-lg hover:shadow-xl">{{ title }} </NuxtLink>
</template>
<script setup lang="ts">
defineProps({
to: {
type: String,
required: true
},
title: {
type: String,
required: true
},
})
</script>