created frontend with login, room listing and creation, and message page with all features

This commit is contained in:
2025-12-15 14:50:50 +01:00
parent f10c761f1b
commit d6a26c0d09
18 changed files with 653 additions and 165 deletions

View File

@@ -1,4 +1,11 @@
import { createApp } from "vue";
import App from "./App.vue";
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import router from './router'
import App from './App.vue'
createApp(App).mount("#app");
import './base.css'
createApp(App)
.use(createPinia())
.use(router)
.mount('#app')