diff --git a/src/components/BowTarget.vue b/src/components/BowTarget.vue index 37bf567..fdfc48c 100644 --- a/src/components/BowTarget.vue +++ b/src/components/BowTarget.vue @@ -63,9 +63,7 @@ const timer = ref(null); watch( () => props.start, (newVal) => { - if (newVal) { - startCount.value = true; - } + startCount.value = newVal; }, { immediate: true, diff --git a/src/components/ScoreResult.vue b/src/components/ScoreResult.vue index 574ddbf..9c21411 100644 --- a/src/components/ScoreResult.vue +++ b/src/components/ScoreResult.vue @@ -1,5 +1,5 @@