8000 fix event propagation in inline-statement · alyeli/vue@130b747 · GitHub
[go: up one dir, main page]

S 8000 kip to content

Commit 130b747

Browse files
committed
fix event propagation in inline-statement
1 parent 21dd64a commit 130b747

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/instance/api/data.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ export default function (Vue) {
2424
var self = this
2525
return function statementHandler () {
2626
self.$arguments = toArray(arguments)
27-
res.get.call(self, self)
27+
var result = res.get.call(self, self)
2828
self.$arguments = null
29+
return result
2930
}
3031
} else {
3132
try {

0 commit comments

Comments
 (0)
0