akkoma-fe/src/components/share/share.js
2025-01-24 18:44:31 +01:00

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