1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-09-16 08:59:59 +01:00
elk/components/common/RichContent.ts
2022-11-21 05:21:53 +08:00

12 lines
185 B
TypeScript

export default defineComponent({
props: {
content: {
type: String,
required: true,
},
},
setup(props) {
return () => contentToVNode(props.content)
},
})