market component (ready until final product object)

This commit is contained in:
Tiago Vasconcelos 2023-03-01 16:59:59 +00:00
parent 8510fcecea
commit 83640c49a2
4 changed files with 169 additions and 121 deletions

View file

@ -0,0 +1,17 @@
async function customerMarket(path) {
const template = await loadTemplateAsync(path)
Vue.component('customer-market', {
name: 'customer-market',
template,
props: ['products', 'exchange-rates'],
data: function () {
return {}
},
methods: {
changePage() {
return
}
}
})
}