feat: add basic customer orders
This commit is contained in:
parent
127f4148ea
commit
4817e594c9
4 changed files with 25 additions and 1 deletions
18
static/components/customer-orders/customer-orders.js
Normal file
18
static/components/customer-orders/customer-orders.js
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
async function customerOrders(path) {
|
||||
const template = await loadTemplateAsync(path)
|
||||
|
||||
Vue.component('customer-orders', {
|
||||
name: 'customer-orders',
|
||||
template,
|
||||
|
||||
props: ['orders'],
|
||||
data: function () {
|
||||
return {}
|
||||
},
|
||||
computed: {},
|
||||
methods: {
|
||||
|
||||
},
|
||||
created() { }
|
||||
})
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue