+
@@ -12,9 +14,25 @@ export default {
name: 'TinyHand',
props: {
ncards: Number,
+ ismyturn: Boolean
},
}
-
\ No newline at end of file
diff --git a/frontend/src/i18n/en.json b/frontend/src/i18n/en.json
index 5670df6..a47424a 100644
--- a/frontend/src/i18n/en.json
+++ b/frontend/src/i18n/en.json
@@ -6,6 +6,7 @@
"no_lobby_available": "No lobbies available",
"create_lobby": "Open a lobby:",
"lobby_name": "Name:",
+ "leave_room": "Leave lobby",
"warning": "Warning!",
"connection_error": "Cannot connect to server.",
"end_turn": "End Turn!",
diff --git a/frontend/src/i18n/it.json b/frontend/src/i18n/it.json
index 9161c0d..986b153 100644
--- a/frontend/src/i18n/it.json
+++ b/frontend/src/i18n/it.json
@@ -6,6 +6,7 @@
"no_lobby_available": "Nessuna stanza disponibile",
"create_lobby": "Crea una stanza:",
"lobby_name": "Nome:",
+ "leave_room": "Esci dalla stanza",
"warning": "Attenzione!",
"connection_error": "Connessione al server assente.",
"end_turn": "Termina turno!",
diff --git a/frontend/src/router/index.js b/frontend/src/router/index.js
index d9500d1..0ce5d3b 100644
--- a/frontend/src/router/index.js
+++ b/frontend/src/router/index.js
@@ -12,7 +12,7 @@ const routes = [
{
path: '/',
name: 'Home',
- component: () => import(/* webpackChunkName: "game" */ '../components/Menu.vue')
+ component: () => import(/* webpackChunkName: "home" */ '../components/Menu.vue')
},
]