debug time left

This commit is contained in:
Branden J Brown 2024-02-03 22:51:21 -06:00
parent e588382794
commit a318c5457f
1 changed files with 1 additions and 0 deletions

View File

@ -88,6 +88,7 @@ const timestamp = useTimestamp({
});
watch(props.game, (now) => {
initTimeLeft.value = now.deadline - timestamp.value;
console.log(initTimeLeft, now.deadline, timestamp.value);
});
const moveColor = computed(() => timeLeft.value > 3000 ? 'primary' : 'red');