12 lines
279 B
Vue
12 lines
279 B
Vue
<script setup lang="ts">
|
|
import type { SectionProseFragment } from "#graphql/types";
|
|
|
|
defineProps<{ section: SectionProseFragment }>();
|
|
</script>
|
|
|
|
<template>
|
|
<AcfLayout :layout="section.layout">
|
|
<div class="prose" v-html="section.content"></div>
|
|
</AcfLayout>
|
|
</template>
|