Initial Commit, includes stubs from chat app

This commit is contained in:
2026-05-22 23:51:50 +02:00
commit d4fed5db23
31 changed files with 9153 additions and 0 deletions

18
src/main.ts Normal file
View File

@@ -0,0 +1,18 @@
import { createApp } from 'vue';
import App from './App.vue';
import router from './router/index.js';
import bootApp from './boot/app.js';
import './style.css';
const app = createApp(App);
app.use(router);
await bootApp({
app,
router,
});
app.mount('#app');