generated from pascalmartineau/wp-skeleton
All checks were successful
Deploy WordPress and Nuxt / deploy (push) Successful in 1m6s
12 lines
293 B
Vue
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>
|