Initial skeleton

This commit is contained in:
Tiago Vasconcelos 2023-02-27 18:13:26 +00:00
parent d76f40baaf
commit cc65c91726
7 changed files with 103 additions and 0 deletions

15
static/js/index.js Normal file
View file

@ -0,0 +1,15 @@
const stalls = async () => {
Vue.component(VueQrcode.name, VueQrcode)
await relayDetails('static/components/stall-details/stall-details.html')
new Vue({
el: '#vue',
mixins: [windowMixin],
data: function () {
return {}
}
})
}
stalls()