nostrmarket/static/js/index.js
2023-02-28 09:50:49 +02:00

15 lines
267 B
JavaScript

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