-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4969f30
commit 6cb1711
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// @flow | ||
|
||
import Vue from 'vue' | ||
import Wrapper from './wrapper' | ||
import VueWrapper from './vue-wrapper' | ||
|
||
export default function createWrapper ( | ||
node: VNode | Component, | ||
update: Function, | ||
options: WrapperOptions | ||
) { | ||
return node instanceof Vue | ||
? new VueWrapper(node, options) | ||
: new Wrapper(node, update, options) | ||
} |