forked from potsda.mn/mobilizon
ee20e03cc2
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
17 lines
352 B
Vue
17 lines
352 B
Vue
<template>
|
|
<div class="flex justify-center h-80">
|
|
<lazy-image-wrapper :picture="picture" />
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { IMedia } from "@/types/media.model";
|
|
import LazyImageWrapper from "../Image/LazyImageWrapper.vue";
|
|
|
|
withDefaults(
|
|
defineProps<{
|
|
picture: IMedia | null;
|
|
}>(),
|
|
{ picture: null }
|
|
);
|
|
</script>
|