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

12 lines
255 B
Vue

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