Skip to content

Commit 086e6d9

Browse files
committed
fix: handle arrays in v-on object syntax
1 parent dc1bca1 commit 086e6d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/instance/render-helpers/bind-object-listeners.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function bindObjectListeners (data: any, value: any): VNodeData {
1414
for (const key in value) {
1515
const existing = on[key]
1616
const ours = value[key]
17-
on[key] = existing ? [ours].concat(existing) : ours
17+
on[key] = existing ? [].concat(ours, existing) : ours
1818
}
1919
}
2020
}

0 commit comments

Comments
 (0)