From 167b6460f41daf5c78f2ad100422a8998cbd2fd2 Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Fri, 2 Feb 2024 18:49:43 -0600 Subject: [PATCH] log received datas --- site/src/App.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/site/src/App.vue b/site/src/App.vue index 9badfc5..a7bc93d 100644 --- a/site/src/App.vue +++ b/site/src/App.vue @@ -41,6 +41,7 @@ const { status, data, send, open } = useWebSocket(`wss://${window.locati const game = ref(null); const dealer = ref(null); watchEffect(() => { + console.log('data', data.value); if (data.value == null) { game.value = null; dealer.value = null;