This commit is contained in:
2025-03-13 22:08:06 +01:00
commit bab5571428
93 changed files with 4323 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import { createApp } from 'vue';
import Vuetify from "./vuetify"
import Ws from "./ws";
export function createVue(component, dom_id){
return createApp(component).use(Vuetify).use(Ws).mount(dom_id)
}