Files
cultureat-bak/wp-content/themes/ccat/app/components/sections/SectionTextBlock.vue
Pascal Martineau 5ce55b5c33
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m6s
refactor: sections-map
2025-09-24 14:05:47 -04:00

12 lines
293 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" />
</section>
</template>