12 lines
264 B
Vue
12 lines
264 B
Vue
<script setup lang="ts">
|
|
import type { SectionProseFragment } from "#graphql/types";
|
|
|
|
defineProps<{ section: SectionProseFragment }>();
|
|
</script>
|
|
|
|
<template>
|
|
<AcfLayout :layout="section.layout">
|
|
<AcfProse :prose="section.prose" />
|
|
</AcfLayout>
|
|
</template>
|