mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-07 17:39:59 +00:00
12 lines
185 B
TypeScript
12 lines
185 B
TypeScript
|
export default defineComponent({
|
||
|
props: {
|
||
|
content: {
|
||
|
type: String,
|
||
|
required: true,
|
||
|
},
|
||
|
},
|
||
|
setup(props) {
|
||
|
return () => contentToVNode(props.content)
|
||
|
},
|
||
|
})
|