feat: add basic order-list

This commit is contained in:
Vlad Stan 2023-03-07 09:12:14 +02:00
parent da41ed3651
commit b446629707
5 changed files with 30 additions and 1 deletions

View file

@ -0,0 +1,3 @@
<div>
xx1
</div>

View file

@ -0,0 +1,18 @@
async function orderList(path) {
const template = await loadTemplateAsync(path)
Vue.component('order-list', {
name: 'order-list',
props: ['adminkey', 'inkey'],
template,
data: function () {
return {
}
},
methods: {
},
created: async function () {
}
})
}