feat: AcfProse

This commit is contained in:
2026-03-30 09:48:28 -04:00
parent 867d0b3e44
commit edb3797f81
7 changed files with 199 additions and 50 deletions

View File

@@ -0,0 +1,12 @@
<script setup lang="ts">
import type { AcfProseFragment } from "#graphql/types";
defineProps<{ prose: AcfProseFragment }>();
const refContent = useTemplateRef("refContent");
useProseLinks(refContent);
</script>
<template>
<div ref="refContent" class="prose" v-html="prose.content" />
</template>