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

10 lines
202 B
Vue

<script setup lang="ts">
import type { SectionTextBlockFragment } from "#graphql/typed-documents";
defineProps<SectionTextBlockFragment>();
</script>
<template>
<div v-html="content" />
</template>