12 lines
263 B
Vue
12 lines
263 B
Vue
<template>
|
|
<p>{{ data }}</p>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { PropType } from "vue";
|
|
import type DynamicZoneGallery from "../../types/component/dynamicZoneGallery";
|
|
|
|
defineProps({
|
|
data: Object as PropType<DynamicZoneGallery>,
|
|
});
|
|
</script>
|