feat: UiProse prose component with link highjacking

This commit is contained in:
2026-01-13 22:19:23 -05:00
parent 764bc6aeea
commit 40becf1135
9 changed files with 909 additions and 3 deletions

View File

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