nostrmarket/static/components/stall-details/stall-details.js
Tiago Vasconcelos cc65c91726 Initial skeleton
2023-02-27 18:13:26 +00:00

15 lines
329 B
JavaScript

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
}
}
})
}