This commit is contained in:
2025-04-13 11:59:50 +02:00
parent 80640d2580
commit fe3191d4a2
21 changed files with 567 additions and 117 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
import { createApp } from 'vue';
import Vuetify from "./vuetify"
import Ws from "./ws";
import QtWC from "./qtwebchannel.js"
export function createVue(component, dom_id){
return createApp(component).use(Vuetify).use(Ws).mount(dom_id)
return createApp(component).use(Vuetify).use(Ws).use(QtWC).mount(dom_id)
}