Skip to content

Commit

Permalink
fix(core): fixed observerPath typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Gcaufy committed Jul 30, 2019
1 parent 8653642 commit 1584d9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/weapp/observer/observerPath.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default class ObserverPath {
for (let i = 0; i < keys.length; i++) {
const key = keys[i];
if (isObject(value[key]) && hasOwn(value[key], '__ob__')) {
value[key].__ob__.op.traverseUpdatePath(key, value[key], value.observer.vm);
value[key].__ob__.op.traverseUpdatePath(key, value[key], value.__ob__.vm);
}
}

Expand Down

0 comments on commit 1584d9a

Please sign in to comment.