feat: add basic order-list
This commit is contained in:
parent
da41ed3651
commit
b446629707
5 changed files with 30 additions and 1 deletions
3
static/components/order-list/order-list.html
Normal file
3
static/components/order-list/order-list.html
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
<div>
|
||||
xx1
|
||||
</div>
|
||||
18
static/components/order-list/order-list.js
Normal file
18
static/components/order-list/order-list.js
Normal 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 () {
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue