change some local storage stuff and css for wordle
Build / Build-image (push) Successful in 1m19s

This commit is contained in:
2026-09-05 13:51:59 +02:00
parent 2bce3f9a71
commit 890bb53ef6
3 changed files with 16 additions and 7 deletions
+3 -1
View File
@@ -18,6 +18,7 @@ import Wordle from '../components/Wordle.vue';
tla: '',
context: '',
submitter: '',
date: '',
victory: false,
loss: false,
maxGuesses: 10,
@@ -42,6 +43,7 @@ import Wordle from '../components/Wordle.vue';
this.context = response.data.context;
this.correct = response.data.correct;
this.correct_words = response.data.tla_array;
this.date = response.data.date;
}
});
@@ -109,7 +111,7 @@ import Wordle from '../components/Wordle.vue';
<GuessWord @pressed_wordle="wordle_open[i-1] = true" :correctness="Number(guess[i+2])" :index="i-1">
{{ guess[i-1] }}
</GuessWord>
<Wordle v-model:open="wordle_open[i-1]" :correct="correct_words[i-1]" :index="i"/>
<Wordle v-model:open="wordle_open[i-1]" :correct="correct_words[i-1]" :index="i" :date="date"/>
</template>
</div>
</template>