Skip to content

Commit 60fd14e

Browse files
committed
fix two way binding with paths (fix #972)
1 parent 54f860d commit 60fd14e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/directives/prop.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ module.exports = {
6767
child,
6868
childKey,
6969
withLock(function (val) {
70-
parent[parentKey] = val
70+
parent.$set(parentKey, val)
7171
})
7272
)
7373
})

0 commit comments

Comments
 (0)