version update to nuxt4
This commit is contained in:
parent
7f1770d442
commit
ef84942e38
41 changed files with 5134 additions and 4946 deletions
12
app/components/dynamicZone/FullText.vue
Normal file
12
app/components/dynamicZone/FullText.vue
Normal file
|
@ -0,0 +1,12 @@
|
|||
<template>
|
||||
<FieldContent :data="data?.text" />
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import type { PropType } from "vue";
|
||||
import type DynamicZoneFullText from "~~/types/component/dynamic-zone/fullText";
|
||||
|
||||
defineProps({
|
||||
data: Object as PropType<DynamicZoneFullText>,
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue