added web and split CLAUDs

This commit is contained in:
johba 2025-07-24 16:08:17 +02:00
parent 8ee33e4f5a
commit 8a82d10a7e
59 changed files with 15083 additions and 740 deletions

10
web/src/main.ts Normal file
View file

@ -0,0 +1,10 @@
import './assets/styles/main.sass'
import { createApp } from 'vue'
import App from './App.vue'
import router from './router'
const app = createApp(App)
app.use(router)
app.mount('#app')