Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
improve Vue.config.keyCode typing
  • Loading branch information
kazupon committed Feb 25, 2017
commit 0911bf19948032c8774a8e34a1db02d12c7cd9bd
2 changes: 1 addition & 1 deletion src/core/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export type Config = {
devtools: boolean;
errorHandler: ?(err: Error, vm: Component, info: string) => void;
ignoredElements: Array<string>;
keyCodes: { [key: string]: number };
keyCodes: { [key: string]: number | Array<number> };
// platform
isReservedTag: (x?: string) => boolean;
parsePlatformTagName: (x: string) => string;
Expand Down