2021-06-10 09:41:07 +02:00
|
|
|
<template>
|
2022-07-12 10:55:28 +02:00
|
|
|
<div class="flex justify-center h-80">
|
2021-06-10 09:41:07 +02:00
|
|
|
<lazy-image-wrapper :picture="picture" />
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-07-12 10:55:28 +02:00
|
|
|
<script lang="ts" setup>
|
2021-06-10 09:41:07 +02:00
|
|
|
import { IMedia } from "@/types/media.model";
|
|
|
|
import LazyImageWrapper from "../Image/LazyImageWrapper.vue";
|
|
|
|
|
2022-07-12 10:55:28 +02:00
|
|
|
withDefaults(
|
|
|
|
defineProps<{
|
|
|
|
picture: IMedia | null;
|
|
|
|
}>(),
|
|
|
|
{ picture: null }
|
|
|
|
);
|
2021-06-10 09:41:07 +02:00
|
|
|
</script>
|