2024-11-02 12:47:07 +01:00
|
|
|
<template>
|
2024-11-03 13:13:36 +01:00
|
|
|
<FieldContent :data="data?.text" />
|
2024-11-02 12:47:07 +01:00
|
|
|
</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";
|
2024-11-02 12:47:07 +01:00
|
|
|
|
|
|
|
defineProps({
|
|
|
|
data: Object as PropType<DynamicZoneFullText>,
|
|
|
|
});
|
|
|
|
</script>
|