12 lines
284 B
Vue
12 lines
284 B
Vue
<template>
|
|
<FieldContent :data="data?.text" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { PropType } from "vue";
|
|
import type DynamicZoneFullText from "../../types/component/dynamicZoneFullText";
|
|
|
|
defineProps({
|
|
data: Object as PropType<DynamicZoneFullText>,
|
|
});
|
|
</script>
|