added roominvites in frontend in a notifications page and added clap to define backend port

This commit is contained in:
2025-12-31 12:14:46 +01:00
parent fb514f1efe
commit e7a575ae03
12 changed files with 258 additions and 145 deletions

View File

@@ -4,6 +4,7 @@ import { initAuth, getLastRoom, setLastRoom } from './store'
import LoginPage from './pages/LoginPage.vue'
import ChatPage from './pages/ChatPage.vue'
import FriendListPage from './pages/FriendListPage.vue'
import NofificationsPage from './pages/NotificationsPage.vue'
const router = createRouter({
history: createWebHistory(),
@@ -21,7 +22,8 @@ const router = createRouter({
component: ChatPage,
props: true
},
{ path: '/friendlist', component: FriendListPage }
{ path: '/friendlist', component: FriendListPage },
{ path: '/notifications', component: NofificationsPage }
],
})