20 lines
365 B
JavaScript
20 lines
365 B
JavaScript
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)
|
|
}
|
|
})
|
|
}
|