1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-06 12:19:08 +01:00
elk/components/content/ContentRich.setup.ts

18 lines
347 B
TypeScript
Raw Normal View History

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