We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bf9772 commit 91deb4fCopy full SHA for 91deb4f
src/core/vdom/helpers/update-listeners.js
@@ -27,8 +27,9 @@ export function createFnInvoker (fns: Function | Array<Function>): Function {
27
function invoker () {
28
const fns = invoker.fns
29
if (Array.isArray(fns)) {
30
- for (let i = 0; i < fns.length; i++) {
31
- fns[i].apply(null, arguments)
+ const cloned = fns.slice()
+ for (let i = 0; i < cloned.length; i++) {
32
+ cloned[i].apply(null, arguments)
33
}
34
} else {
35
// return handler return value for single handlers
0 commit comments