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