fix(game-ui): 모바일 자율 행동을 한 줄로 표시한다

This commit is contained in:
2026-08-27 18:14:32 +00:00
parent 6a60882005
commit 4b06330753
4 changed files with 30 additions and 0 deletions
@@ -29,6 +29,7 @@ const props = defineProps<{
storageKey?: string;
mapData?: CommandMapData | null;
mapLayout?: CommandMapLayout | null;
mobile?: boolean;
}>();
const emit = defineEmits<{
@@ -143,6 +144,7 @@ onUnmounted(() => {
:map-data="props.mapData"
:map-layout="props.mapLayout"
:autonomous-until="autonomousUntil"
:mobile="props.mobile"
@reserve-bulk="emit('set-general-turns', $event)"
@shift="emit('shift-general-turns', $event)"
@repeat="emit('repeat-general-turns', $event)"