SyntaxSquad/DADProject#16 feat: Can now start matches, just missing the actuall gameplay

This commit is contained in:
AfonsoCMSousa
2026-01-03 04:52:02 +00:00
parent 3dcd8df4c7
commit e0ca8e51a6
12 changed files with 793 additions and 490 deletions
+7
View File
@@ -10,6 +10,7 @@ import TestAllAnimations from '@/pages/TestAllAnimations.vue'
import TestGameBoard from '@/pages/TestGameBoard.vue'
import SinglePlayerGamePage from '@/pages/game/SinglePlayerGamePage.vue'
import MultiplayerGamePage from '@/pages/game/MultiplayerGamePage.vue'
import MultiplayerMatchPage from '@/pages/game/MultiplayerMatchPage.vue'
import RegisterPage from '@/pages/register/RegisterPage.vue'
import CoinsPurchasePage from '@/pages/purchase/CoinPurchasePage.vue'
import { useAuthStore } from '@/stores/auth'
@@ -54,6 +55,12 @@ const router = createRouter({
component: MultiplayerGamePage,
meta: { requiresAuth: true }
},
{
path: '/match/:id',
name: 'multiplayer-match',
component: MultiplayerMatchPage,
meta: { requiresAuth: true }
},
{
path: '/user',
component: UserPage,