Skip to content

Commit eb826a7

Browse files
authored
fix: typo fix
1 parent 191c61c commit eb826a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vueWrapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function createVMProxy<T extends ComponentPublicInstance>(
3131
return Reflect.get(vm.$.exposeProxy, key, receiver);
3232
}
3333
else if (vm.$.exposed && key in vm.$.exposed) {
34-
// first if the key is exposed
34+
// second if the key is exposed
3535
return Reflect.get(proxyRefs(vm.$.exposed), key, receiver);
3636
} else if (key in setupState) {
3737
// third if the key is acccessible from the setupState

0 commit comments

Comments
 (0)