diff options
author | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-02-03 12:41:04 +0100 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-02-03 12:41:15 +0100 |
commit | 6041694cd7265cfd3f31b873c340cc6d24fd459e (patch) | |
tree | 4d3e5b7640e892799b313bba0edac38e9d8de6d2 /src/components/Keyboard.vue | |
parent | 801547bfa8bc1ae3949027e46045e4693454f65f (diff) | |
download | wordle-frontend-6041694cd7265cfd3f31b873c340cc6d24fd459e.tar.xz |
move app, add some trials, change keyboard capabilities
Diffstat (limited to 'src/components/Keyboard.vue')
-rw-r--r-- | src/components/Keyboard.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Keyboard.vue b/src/components/Keyboard.vue index 7d76dbd..8b4f707 100644 --- a/src/components/Keyboard.vue +++ b/src/components/Keyboard.vue @@ -17,7 +17,7 @@ import KeyboardKey from "@/components/KeyboardKey.vue"; let props = defineProps<{ addLetter: (letter: string) => void; removeLetter: () => void; - navigate: (direction: "left" | "right" | "first" | "last") => void; + submit: () => void; }>(); const rows = ["QWERTZUIOPÜ", "ASDFGHJKLÖÄ", "YXCVBNMß"]; |