blob: 4f7020b2e4d182cc206bae24a03396bb5379449c (
plain)
1
2
3
4
5
6
|
STUDIP.ready(async () => {
const vueAppNodes = document.querySelectorAll('[data-vue-app]:not([data-vue-app-created])');
for (const node of vueAppNodes) {
await STUDIP.Vue.mountApp(node);
}
});
|