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";
|
|
|
|
import type DynamicZoneFullText from "../../types/component/dynamicZoneFullText";
|
|
|
|
|
|
|
|
defineProps({
|
|
|
|
data: Object as PropType<DynamicZoneFullText>,
|
|
|
|
});
|
|
|
|
</script>
|