Gun-Vue docs v0.21.4 • Docs
Gun-Vue docs v0.21.4 / Post / addPost
Function: addPost()
addPost(
to
,post
):Promise
<void
>
Add a new post to a tag
Parameters
• to: string
• post: PostContent
Returns
Promise
<void
>
Example
ts
import { addPost } from '@gun-vue/composables'
addPost('MyTag', {
title: 'New post'
})