We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcb7f5d commit e806b1dCopy full SHA for e806b1d
src/views/login/index.vue
@@ -146,17 +146,9 @@ export default {
146
// window.removeEventListener('storage', this.afterQRScan)
147
},
148
methods: {
149
- checkCapslock({ shiftKey, key } = {}) {
150
- if (key && key.length === 1) {
151
- if (shiftKey && (key >= 'a' && key <= 'z') || !shiftKey && (key >= 'A' && key <= 'Z')) {
152
- this.capsTooltip = true
153
- } else {
154
- this.capsTooltip = false
155
- }
156
157
- if (key === 'CapsLock' && this.capsTooltip === true) {
158
159
+ checkCapslock(e) {
+ const { key } = e
+ this.capsTooltip = key && key.length === 1 && (key >= 'A' && key <= 'Z')
160
161
showPwd() {
162
if (this.passwordType === 'password') {
0 commit comments