Initial skeleton
This commit is contained in:
parent
d76f40baaf
commit
cc65c91726
7 changed files with 103 additions and 0 deletions
15
static/components/stall-details/stall-details.js
Normal file
15
static/components/stall-details/stall-details.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
async function stallDetails(path) {
|
||||
const template = await loadTemplateAsync(path)
|
||||
Vue.component('stall-details', {
|
||||
name: 'stall-details',
|
||||
template,
|
||||
|
||||
//props: ['stall-id', 'adminkey', 'inkey', 'wallet-options'],
|
||||
data: function () {
|
||||
return {
|
||||
tab: 'info',
|
||||
relay: null
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue