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

19 lines
368 B
JavaScript

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