log received datas

This commit is contained in:
Branden J Brown 2024-02-02 18:49:43 -06:00
parent 653fd061d0
commit 167b6460f4
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ const { status, data, send, open } = useWebSocket<string>(`wss://${window.locati
const game = ref<Game | null>(null);
const dealer = ref<boolean | null>(null);
watchEffect(() => {
console.log('data', data.value);
if (data.value == null) {
game.value = null;
dealer.value = null;