Files
headless-2026-03/wp-content/themes/headless/app/components/acf/AcfProse.vue
2026-03-30 09:48:28 -04:00

13 lines
301 B
Vue

<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>