12 lines
307 B
Vue
12 lines
307 B
Vue
<script setup lang="ts">
|
|
import type { SectionTextBlockFragment } from "#graphql/operations";
|
|
|
|
defineProps<SectionTextBlockFragment>();
|
|
</script>
|
|
|
|
<template>
|
|
<LayoutWrapper data-section-type="text-block" :layout-settings="layoutSettings">
|
|
<UiProse :content="content" />
|
|
</LayoutWrapper>
|
|
</template>
|