feat: FRO-24 Create Played Cards Component #17

Merged
lq64 merged 2 commits from feat/FRO-24 into main 2025-12-10 16:46:34 +01:00
2 changed files with 44 additions and 1 deletions
Showing only changes of commit 9b1372a92a - Show all commits

View File

@@ -1,12 +1,6 @@
<script lang="ts" setup>
import {computed, defineProps, toRefs} from 'vue'
import type {Round, Trick} from "@/types/GameSubTypes.ts";
type PlayedCard = {
cardPath: string
player: string
}
import type {Trick} from "@/types/GameSubTypes.ts";
const props = defineProps<{ trick: Trick }>()
const {trick } = toRefs(props)