feat: basic orders UI

This commit is contained in:
Vlad Stan 2023-07-11 12:34:21 +03:00
parent 4817e594c9
commit aed65dd65e
4 changed files with 82 additions and 4 deletions

View file

@ -2,7 +2,7 @@ async function customerOrders(path) {
const template = await loadTemplateAsync(path)
Vue.component('customer-orders', {
name: 'customer-orders',
name: 'orders',
template,
props: ['orders'],
@ -13,6 +13,8 @@ async function customerOrders(path) {
methods: {
},
created() { }
created() {
console.log('### orders', this.orders)
}
})
}