Files
AstralRinth/packages/ui/src/components/project/ProjectPageDescription.vue
Geometrically c970e9c015 Fix sockets issues (#3015)
* Fix sockets issues

* Fix app comp
2024-12-12 13:25:25 -08:00

14 lines
271 B
Vue

<template>
<div class="markdown-body" v-html="renderHighlightedString(description ?? '')" />
</template>
<script setup lang="ts">
import { renderHighlightedString } from '@modrinth/utils'
withDefaults(
defineProps<{
description: string
}>(),
{},
)
</script>