Files
wp-headless/wp-content/themes/moonshine/app/components/sections/SectionTextBlock.global.vue
2026-01-13 21:51:18 -05:00

12 lines
301 B
Vue

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