10 lines
202 B
Vue
10 lines
202 B
Vue
<script setup lang="ts">
|
|
import type { SectionTextBlockFragment } from "#graphql/typed-documents";
|
|
|
|
defineProps<SectionTextBlockFragment>();
|
|
</script>
|
|
|
|
<template>
|
|
<div v-html="content" />
|
|
</template>
|