ff-webpage/components/dynamicZone/Gallery.vue

13 lines
263 B
Vue
Raw Normal View History

<template>
<p>{{ data }}</p>
</template>
<script setup lang="ts">
import type { PropType } from "vue";
import type DynamicZoneGallery from "../../types/component/dynamicZoneGallery";
defineProps({
data: Object as PropType<DynamicZoneGallery>,
});
</script>