Files
cultureat-bak/wp-content/themes/ccat/app/components/sections/SectionTextBlock.vue

13 lines
329 B
Vue

<script setup lang="ts">
import type { SectionTextBlockFragment } from "#graphql-operations";
defineProps<SectionTextBlockFragment>();
</script>
<template>
<section data-section-type="text-block">
<div :class="layoutSettings?.contentWidth" v-html="content" />
<pre>{{ layoutSettings }}</pre>
</section>
</template>