mobilizon.chapril.org-mobil.../js/src/components/Event/EventBanner.vue
Thomas Citharel ee20e03cc2
Migrate to Vue 3 and Vite
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-08-11 16:46:31 +02:00

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>