]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
types: fix wrong order
authorEvan You <yyx990803@gmail.com>
Sun, 14 Oct 2018 01:14:52 +0000 (21:14 -0400)
committerEvan You <yyx990803@gmail.com>
Sun, 14 Oct 2018 01:14:52 +0000 (21:14 -0400)
packages/core/src/component.ts

index d08ce976891417917ab014d39e15e35f69474079..371cd9158a05179f79cf995371d12a0c80190e88 100644 (file)
@@ -102,7 +102,7 @@ export interface ComponentInstance<P = {}, D = {}>
 
   _updateHandle: Autorun
   _queueJob: ((fn: () => void) => void)
-  _self: ComponentInstance<D, P> // on proxies only
+  _self: ComponentInstance<P, D> // on proxies only
 }
 
 // actual implementation of the component