add customer stall component, remove toolbar

This commit is contained in:
Tiago Vasconcelos 2023-03-02 15:37:21 +00:00
parent 4fa136164a
commit 800619df9f
3 changed files with 249 additions and 15 deletions

View file

@ -0,0 +1,17 @@
async function customerStall(path) {
const template = await loadTemplateAsync(path)
Vue.component('customer-stall', {
name: 'customer-stall',
template,
props: ['stall', 'products', 'exchange-rates'],
data: function () {
return {}
},
methods: {},
created() {
console.log(this.stall)
console.log(this.products)
}
})
}