feat: add empty user config

This commit is contained in:
Vlad Stan 2023-07-13 14:55:22 +03:00
parent c2fa852df1
commit 68a2393318
4 changed files with 38 additions and 6 deletions

View file

@ -0,0 +1,19 @@
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 () {
}
})
}