Skip to content

Commit

Permalink
Merge pull request #6 from ef81sp/renew-explanation
Browse files Browse the repository at this point in the history
fix type
  • Loading branch information
ef81sp authored Apr 16, 2024
2 parents 955b995 + 5a39884 commit 3f9fe86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ExplanationSevenPairs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { AnalysisResult手牌13_7pairs } from '@/utils/type'
const props = defineProps<{ analysisResult手牌13_7pairs: AnalysisResult手牌13_7pairs }>()
const shanten = computed(() => props.analysisResult手牌13_7pairs.シャンテン数)
const yuuko = computed(() => props.analysisResult手牌13_7pairs.有効牌)
const yuuko = computed(() => props.analysisResult手牌13_7pairs.有効牌.map((p) => p.toString()))
</script>
<template>
<Divider />
Expand Down

0 comments on commit 3f9fe86

Please sign in to comment.