mirror of
https://akkoma.dev/AkkomaGang/akkoma-fe
synced 2025-04-30 11:09:30 +08:00
17 lines
399 B
JavaScript
17 lines
399 B
JavaScript
// This entire file is basically a hack to make the
|
|
// "preset" functionality of post_status_form work
|
|
|
|
import { h, resolveComponent } from "vue"
|
|
import PostStatusForm from "../post_status_form/post_status_form.vue"
|
|
|
|
const Share = {
|
|
name: 'Share',
|
|
render () {
|
|
return h(resolveComponent('PostStatusForm'))
|
|
},
|
|
components: {
|
|
PostStatusForm
|
|
}
|
|
}
|
|
|
|
export default Share
|