1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-26 03:21:17 +03:00
elk/components/content/ContentRich.setup.ts

18 lines
347 B
TypeScript
Raw Normal View History

2022-11-25 15:12:49 +08:00
import type { Emoji } from 'masto'
import { emojisArrayToObject } from '~/composables/utils'
defineOptions({
name: 'ContentRich',
})
const props = defineProps<{
content: string
2022-11-25 15:57:39 +08:00
emojis?: Emoji[]
2022-11-25 15:12:49 +08:00
}>()
export default () => h(
'span',
{ class: 'content-rich' },
contentToVNode(props.content, emojisArrayToObject(props.emojis || [])),
2022-11-25 15:12:49 +08:00
)