generated from pascalmartineau/wp-skeleton
13 lines
329 B
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>
|