Skip to content

Commit 4378fc5

Browse files
committed
fix: fix keyName checking for arrow keys in IE11
fix #7806
1 parent 984927a commit 4378fc5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/compiler/codegen/events.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ const keyNames: { [key: string]: string | Array<string> } = {
2222
tab: 'Tab',
2323
enter: 'Enter',
2424
space: ' ',
25-
up: 'ArrowUp',
26-
left: 'ArrowLeft',
27-
right: 'ArrowRight',
28-
down: 'ArrowDown',
25+
// #7806: IE11 uses key names without `Arrow` prefix for arrow keys.
26+
up: ['Up', 'ArrowUp'],
27+
left: ['Left', 'ArrowLeft'],
28+
right: ['Right', 'ArrowRight'],
29+
down: ['Down', 'ArrowDown'],
2930
'delete': ['Backspace', 'Delete']
3031
}
3132

0 commit comments

Comments
 (0)