We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0efa9a commit 563672eCopy full SHA for 563672e
flow/component.js
@@ -57,7 +57,6 @@ declare interface Component {
57
_isBeingDestroyed: boolean;
58
_vnode: ?VNode;
59
_staticTrees: ?Array<VNode>;
60
- _keyCode: (key: string) => ?number;
61
62
// private methods
63
// lifecycle
@@ -104,6 +103,8 @@ declare interface Component {
104
103
) => ?Array<VNode>;
105
// apply v-bind object
106
_b: (vnode: VNodeWithData, value: any) => void;
+ // retrive custom keyCode
107
+ _k: (key: string) => ?number;
108
109
// allow dynamic method registration
110
[key: string]: any
0 commit comments