fix the type of VNodeComponentOptions.Ctor (#4257)

This commit is contained in:
katashin 2016-11-21 01:59:10 +09:00 committed by Evan You
parent ff7f231002
commit 9e6255e457

2
types/vnode.d.ts vendored
View File

@ -24,7 +24,7 @@ export interface VNode {
}
export interface VNodeComponentOptions {
Ctor: Vue;
Ctor: typeof Vue;
propsData?: Object;
listeners?: Object;
children?: VNodeChildren;