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

12 lines
301 B
Vue

<script setup lang="ts">
import type { SectionTextBlockFragment } from "#graphql/fragments";
defineProps<SectionTextBlockFragment>();
</script>
<template>
<LayoutContained data-section-type="text-block" v-bind="layoutSettings!">
<UiProse :content="content" />
</LayoutContained>
</template>