13 lines
287 B
Vue
13 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>
|