24 lines
386 B
Vue
24 lines
386 B
Vue
|
<script setup lang="ts">
|
||
|
defineProps({
|
||
|
imgSrc: {
|
||
|
type: String,
|
||
|
required: true
|
||
|
},
|
||
|
link: {
|
||
|
type: String,
|
||
|
required: true
|
||
|
}
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<a :href="link">
|
||
|
<img :src="imgSrc" class="h-14 mx-auto"/>
|
||
|
<div class="text-lg text-white text-center">
|
||
|
<slot></slot>
|
||
|
</div>
|
||
|
</a>
|
||
|
</div>
|
||
|
</template>
|