-
-
Save parzibyte/09da9db42458387f1cbf7608c70498c3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setupKeys() { | |
// We make a dictionary from the letters | |
for (const letter of ALPHABET) { | |
Vue.set(this.letters, letter, { | |
letter, | |
disabled: false, // We disable it when the user clicks on it | |
}); | |
} | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment