Skip to content

Commit

Permalink
振り返りリストを初期化
Browse files Browse the repository at this point in the history
  • Loading branch information
ef81sp committed Jan 5, 2025
1 parent db08ae4 commit 3ef44f3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/views/Nanimachi100View.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ const toPlaying = () => {
scene.value = 'playing'
}
const handleStart = () => {
questionList.value = []
toCountdown()
}
const toCountdown = () => {
nowQuestion.value = 1
scene.value = 'countdown'
Expand Down Expand Up @@ -107,7 +111,7 @@ const handleCorrect = (hand: 手牌, answer: PaiStr[]) => {
v-model:type="type"
v-model:exclude5="exclude5"
v-model:showTime="showTime"
@start="toCountdown"
@start="handleStart"
/>
<Nanimachi100CountDown
v-else-if="scene === 'countdown'"
Expand Down

0 comments on commit 3ef44f3

Please sign in to comment.