Skip to content

Commit a785d51

Browse files
committed
Add input fields for ball placement position
1 parent 4ebe4cb commit a785d51

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

frontend/src/views/PlaceBallView.vue

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,23 @@ const disable = computed(() => {
6262
/>
6363
</div>
6464

65+
<div class="row wrap justify-evenly q-mt-md">
66+
<q-input
67+
input-class="text-center"
68+
dense
69+
label="X-Coordinate"
70+
type="number"
71+
v-model="newBallPos.x"
72+
/>
73+
<q-input
74+
input-class="text-center"
75+
dense
76+
label="Y-Coordinate"
77+
type="number"
78+
v-model="newBallPos.y"
79+
/>
80+
</div>
81+
6582
<div class="q-px-md">
6683
<div class="q-pt-xl">
6784
<q-item>

0 commit comments

Comments
 (0)