feat: basic parsing of post content

This commit is contained in:
Anthony Fu 2022-11-21 05:21:53 +08:00
parent 38f5d7155f
commit bc3197ba22
6 changed files with 102 additions and 5 deletions

View file

@ -0,0 +1,11 @@
export default defineComponent({
props: {
content: {
type: String,
required: true,
},
},
setup(props) {
return () => contentToVNode(props.content)
},
})