feat: basic orders UI
This commit is contained in:
parent
4817e594c9
commit
aed65dd65e
4 changed files with 82 additions and 4 deletions
|
|
@ -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)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue