feat: add basic stall list

This commit is contained in:
Vlad Stan 2023-07-14 14:28:26 +03:00
parent e37d385a2c
commit ad0ac073ab
4 changed files with 94 additions and 6 deletions

View file

@ -0,0 +1,20 @@
async function customerStallList(path) {
const template = await loadTemplateAsync(path)
Vue.component('customer-stall-list', {
name: 'customer-stall-list',
template,
props: ['stalls'],
data: function () {
return {}
},
computed: {},
methods: {
},
created() {
console.log('### stalls', this.stalls)
}
})
}