ff-webpage/components/dynamicZone/ColumnImageText.vue

12 lines
287 B
Vue

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