adding 18n and player turn highlitgh

This commit is contained in:
Jose Conde
2024-07-16 03:12:48 +02:00
parent 5392dce264
commit c3ba84a815
11 changed files with 142 additions and 17 deletions

View File

@ -13,6 +13,7 @@ import { useGameOptionsStore } from '@/stores/gameOptions'
let background = ref<string>('green')
let teamed = ref<boolean>(false)
let pointsToWin = ref<number>(100)
let seed = ref<string>('')
let sessionName = ref('Test Value')
let matchSessions = ref<MatchSessionDto[]>([])
@ -146,7 +147,22 @@ function copy(sessionSeed: string) {
</div>
</div>
</div>
<div class="cell"></div>
<div class="cell">
<div class="field">
<label for="pointsToWin" class="label">Points to win</label>
<div class="control">
<div class="select">
<select v-model="pointsToWin" name="pointsToWin">
<option value="50">50</option>
<option value="80">80</option>
<option value="100">100</option>
<option value="150">150</option>
<option value="200">200</option>
</select>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="block" v-if="!isSessionStarted"></div>