Files
DredgeTours/resources/js/components/dredgy/ButtonLink.vue
2025-10-21 23:13:32 +10:00

17 lines
263 B
Vue

<script setup lang="ts">
import {Link} from "@inertiajs/vue3";
defineProps({
href: String,
})
</script>
<template>
<Link :href="href || '#'" style="display:block;width:100%;height:100%" >
<slot/>
</Link>
</template>
<style scoped>
</style>