vpn integration

This commit is contained in:
2026-04-11 21:51:30 +02:00
parent 4671e5da63
commit c4d27e9842
26 changed files with 2566 additions and 899 deletions
+5 -1
View File
@@ -4,5 +4,9 @@ import Ws from "./ws";
import QtWC from "./qtwebchannel.js"
export function createVue(component, dom_id){
return createApp(component).use(Vuetify).use(Ws).use(QtWC).mount(dom_id)
return createApp(component)
.use(Vuetify)
.use(Ws)
.use(QtWC)
.mount(dom_id)
}