diff --git a/web/src/App.vue b/web/src/App.vue index 30430ad..c7c8102 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -3,7 +3,7 @@
No connection to the game server.
@@ -70,6 +70,7 @@ export default { message: null, type: null, }, + ready: false, }}, computed: { gameState() { @@ -119,6 +120,11 @@ export default { }; }, }, + mounted() { + setTimeout(() => { + this.ready = true; + }, 1000); + }, }