nostrmarket/static/components/user-chat/user-chat.js
2023-07-18 16:40:43 +02:00

19 lines
362 B
JavaScript

async function userChat(path) {
const template = await loadTemplateAsync(path)
Vue.component('user-chat', {
name: 'user-chat',
props: ['user',],
template,
data: function () {
return {
}
},
methods: {
},
created: async function () {
}
})
}