You've already forked AstralRinth
forked from didirus/AstralRinth
14 lines
271 B
Vue
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>
|