Skip to content

Commit 91deb4f

Browse files
committed
fix: multiple merged vnode hooks not invoked properly
fix #6076
1 parent 6bf9772 commit 91deb4f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/core/vdom/helpers/update-listeners.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ export function createFnInvoker (fns: Function | Array<Function>): Function {
2727
function invoker () {
2828
const fns = invoker.fns
2929
if (Array.isArray(fns)) {
30-
for (let i = 0; i < fns.length; i++) {
31-
fns[i].apply(null, arguments)
30+
const cloned = fns.slice()
31+
for (let i = 0; i < cloned.length; i++) {
32+
cloned[i].apply(null, arguments)
3233
}
3334
} else {
3435
// return handler return value for single handlers

0 commit comments

Comments
 (0)