mirror of
https://github.com/cloudstack-llc/msty-docs.git
synced 2026-07-18 18:54:38 -04:00
24 lines
472 B
Vue
24 lines
472 B
Vue
<template>
|
|
<div class="mt-5">
|
|
<NuxtLink :to="src" :target="target">
|
|
<div class="p-4">
|
|
<NuxtImg :src="src" :alt="alt" class="rounded-lg mx-auto" />
|
|
</div>
|
|
</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>
|