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 191c61c commit eb826a7Copy full SHA for eb826a7
src/vueWrapper.ts
@@ -31,7 +31,7 @@ function createVMProxy<T extends ComponentPublicInstance>(
31
return Reflect.get(vm.$.exposeProxy, key, receiver);
32
}
33
else if (vm.$.exposed && key in vm.$.exposed) {
34
- // first if the key is exposed
+ // second if the key is exposed
35
return Reflect.get(proxyRefs(vm.$.exposed), key, receiver);
36
} else if (key in setupState) {
37
// third if the key is acccessible from the setupState
0 commit comments