We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc1bca1 commit 086e6d9Copy full SHA for 086e6d9
src/core/instance/render-helpers/bind-object-listeners.js
@@ -14,7 +14,7 @@ export function bindObjectListeners (data: any, value: any): VNodeData {
14
for (const key in value) {
15
const existing = on[key]
16
const ours = value[key]
17
- on[key] = existing ? [ours].concat(existing) : ours
+ on[key] = existing ? [].concat(ours, existing) : ours
18
}
19
20
0 commit comments