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