17 lines
263 B
Vue
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>
|