mirror of
https://github.com/cloudstack-llc/msty-docs.git
synced 2026-07-19 13:45:58 -04:00
29 lines
596 B
Vue
29 lines
596 B
Vue
<template>
|
|
<div class="mt-5">
|
|
<NuxtLink :to="src" :target="target">
|
|
<UiCard
|
|
class="transition-all relative h-full"
|
|
:class="[src && 'hover:bg-muted']"
|
|
>
|
|
<div class="p-4">
|
|
<NuxtImg :src="src" :alt="alt" class="rounded-lg" />
|
|
</div>
|
|
</UiCard>
|
|
</NuxtLink>
|
|
<p class="text-center my-4 text-sm text-muted-foreground">
|
|
{{ alt }}
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
interface Props {
|
|
src: string;
|
|
target?: string;
|
|
alt?: string;
|
|
}
|
|
withDefaults(defineProps<Props>(), {
|
|
target: "_blank",
|
|
});
|
|
</script>
|