feat : guess word

This commit is contained in:
2024-12-30 20:15:02 +01:00
parent 08daf733d1
commit 9eaf7009c6
12 changed files with 304 additions and 54 deletions
+6 -1
View File
@@ -17,7 +17,12 @@ const game = lobbyStore.games[props.id];
<template>
{{ game.id }}
{{ game.players.map((p) => p.user.username) }}
<User
v-for="player in game.players"
:key="player.id"
:id="player.userId"
></User>
{{ game.started }}
{{ game }}
<NuxtLink :to="'/game/' + id"