Files
wp-headless/wp-content/themes/moonshine/app/components/ui/UiProse.vue

10 lines
229 B
Vue

<script setup lang="ts">
defineProps<{ content: string }>();
const refContent = useTemplateRef("refContent");
useProseLinks(refContent);
</script>
<template>
<div ref="refContent" class="prose" v-html="content" />
</template>