-
Notifications
You must be signed in to change notification settings - Fork 663
Closed
Description
The other day while testing a class that manually mounts a Vue instance to an element in the page, I wanted to use the Wrapper utilities but found out that I can't just call new Wrapper(myVueInstance); as it seems that Wrapper and WrapperArray are not exposed within the public API.
I didn't dive deep into the code, so I might have missed a way to achieve what I want.
A quick look at the source and the documentation shows that only the following is exposed:
export default {
createLocalVue,
config,
mount,
shallow,
TransitionStub,
TransitionGroupStub
}I found /pull/328 which is close to what I'd want.