diff --git a/src/components/BowTarget.vue b/src/components/BowTarget.vue index 4b82627..434aee1 100644 --- a/src/components/BowTarget.vue +++ b/src/components/BowTarget.vue @@ -150,8 +150,8 @@ const simulShoot2 = async () => { v-if="blueScores.length && showRoundTips && showLatestArrow" class="round-tip fade-in-out" :style="{ - left: calcRealX(scores[scores.length - 1].x, 70), - top: calcRealY(scores[scores.length - 1].y, 100), + left: calcRealX(blueScores[blueScores.length - 1].x, 70), + top: calcRealY(blueScores[blueScores.length - 1].y, 100), }" >{{ blueScores[blueScores.length - 1].ring }} diff --git a/src/components/PlayerScore.vue b/src/components/PlayerScore.vue index 28a5866..3635a8a 100644 --- a/src/components/PlayerScore.vue +++ b/src/components/PlayerScore.vue @@ -12,10 +12,6 @@ defineProps({ type: Array, default: () => [], }, - done: { - type: Boolean, - default: false, - }, }); const rowCount = new Array(6).fill(0); @@ -23,11 +19,11 @@ const rowCount = new Array(6).fill(0);