This commit is contained in:
2026-04-26 22:02:24 +02:00
commit 73442783b7
1470 changed files with 43422 additions and 0 deletions

12
app/main.ts Normal file
View File

@@ -0,0 +1,12 @@
import { createApp } from "vue";
import App from "./App.vue";
import router from "./router";
import AsyncComputed from "vue-async-computed";
import '@formkit/themes/genesis'
import { plugin, defaultConfig } from '@formkit/vue'
createApp(App)
.use(router)
.use(AsyncComputed)
.use(plugin,defaultConfig())
.mount("#app");