feat/FRO-33: Added a nice Select Trumpsuit Component #24

Merged
Janis merged 5 commits from feat/FRO-33 into main 2025-12-18 09:44:47 +01:00
4 changed files with 186 additions and 12 deletions
Showing only changes of commit 819d51f97b - Show all commits

View File

@@ -6,7 +6,7 @@ import type {GameInfo} from "@/types/GameTypes.ts";
const ig = useIngame() const ig = useIngame()
const currentPlayer = computed(() => (<GameInfo>ig.data).playerQueue?.currentPlayer) const currentPlayer = computed(() => (<GameInfo>ig.data).playerQueue?.currentPlayer)
const queue = computed(() => { return (<GameInfo>ig.data).playerQueue.queue ?? []}) const queue = computed(() => { return (<GameInfo>ig.data).playerQueue?.queue ?? []})
</script> </script>
<template> <template>