Files
wp-headless/wp-content/themes/moonshine/app/components/sections/SectionTextBlock.global.vue

12 lines
307 B
Vue

<script setup lang="ts">
import type { SectionTextBlockFragment } from "#graphql/operations";
defineProps<SectionTextBlockFragment>();
</script>
<template>
<LayoutWrapper data-section-type="text-block" :layout-settings="layoutSettings">
<UiProse :content="content" />
</LayoutWrapper>
</template>