pinafore/routes/_components/dialog/ComposeDialog.html

22 lines
518 B
HTML
Raw Normal View History

2018-03-27 07:02:55 +00:00
<ModalDialog :label :shown :closed :title background="var(--main-bg)">
2018-03-30 08:06:17 +00:00
<ComposeBox realm="dialog" size="slim" on:postedStatus="onPostedStatus()" />
2018-03-27 07:02:55 +00:00
</ModalDialog>
<script>
import ModalDialog from './ModalDialog.html'
import ComposeBox from '../compose/ComposeBox.html'
export default {
components: {
ModalDialog,
ComposeBox
},
methods: {
async show() {
this.set({shown: true})
},
onPostedStatus() {
this.set({closed: true})
}
}
}
</script>