ff-webpage/app/components/dynamicZone/FullText.vue

13 lines
283 B
Vue
Raw Permalink Normal View History

<template>
<FieldContent :data="data?.text" />
</template>
<script setup lang="ts">
import type { PropType } from "vue";
2025-07-23 13:46:18 +02:00
import type DynamicZoneFullText from "~~/types/component/dynamic-zone/fullText";
defineProps({
data: Object as PropType<DynamicZoneFullText>,
});
</script>