feat: add empty DMs box

This commit is contained in:
Vlad Stan 2023-03-07 15:23:59 +02:00
parent 192ef1770e
commit b7c099c935
5 changed files with 33 additions and 13 deletions

View file

@ -0,0 +1,14 @@
async function directMessages(path) {
const template = await loadTemplateAsync(path)
Vue.component('direct-messages', {
name: 'direct-messages',
props: ['adminkey', 'inkey'],
template,
data: function () {
return {}
},
methods: {},
created: async function () {}
})
}