12 lines
301 B
Vue
12 lines
301 B
Vue
<script setup lang="ts">
|
|
import type { SectionTextBlockFragment } from "#graphql/fragments";
|
|
|
|
defineProps<SectionTextBlockFragment>();
|
|
</script>
|
|
|
|
<template>
|
|
<LayoutContained data-section-type="text-block" v-bind="layoutSettings!">
|
|
<UiProse :content="content" />
|
|
</LayoutContained>
|
|
</template>
|