2024-11-02 11:47:07 +00:00
|
|
|
<template>
|
2024-11-03 12:13:36 +00:00
|
|
|
<FieldContent :data="data?.text" />
|
2024-11-02 11:47:07 +00: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>
|