提交 c42cbbf7 编写于 作者: fxy060608's avatar fxy060608

build:all

上级 b1aa02f7
...@@ -1140,14 +1140,17 @@ function handleEvent (event) { ...@@ -1140,14 +1140,17 @@ function handleEvent (event) {
} }
handler.once = true; handler.once = true;
} }
ret.push(handler.apply(handlerCtx, processEventArgs( const params = processEventArgs(
this.$vm, this.$vm,
event, event,
eventArray[1], eventArray[1],
eventArray[2], eventArray[2],
isCustom, isCustom,
methodName methodName
))); ) || [];
// 参数尾部增加原始事件对象用于复杂表达式内获取额外数据
// eslint-disable-next-line no-sparse-arrays
ret.push(handler.apply(handlerCtx, params.concat([, , , , , , , , , , event])));
} }
}); });
} }
......
...@@ -1619,14 +1619,17 @@ function handleEvent (event) { ...@@ -1619,14 +1619,17 @@ function handleEvent (event) {
} }
handler.once = true; handler.once = true;
} }
ret.push(handler.apply(handlerCtx, processEventArgs( const params = processEventArgs(
this.$vm, this.$vm,
event, event,
eventArray[1], eventArray[1],
eventArray[2], eventArray[2],
isCustom, isCustom,
methodName methodName
))); ) || [];
// 参数尾部增加原始事件对象用于复杂表达式内获取额外数据
// eslint-disable-next-line no-sparse-arrays
ret.push(handler.apply(handlerCtx, params.concat([, , , , , , , , , , event])));
} }
}); });
} }
......
...@@ -1282,14 +1282,17 @@ function handleEvent (event) { ...@@ -1282,14 +1282,17 @@ function handleEvent (event) {
} }
handler.once = true; handler.once = true;
} }
ret.push(handler.apply(handlerCtx, processEventArgs( const params = processEventArgs(
this.$vm, this.$vm,
event, event,
eventArray[1], eventArray[1],
eventArray[2], eventArray[2],
isCustom, isCustom,
methodName methodName
))); ) || [];
// 参数尾部增加原始事件对象用于复杂表达式内获取额外数据
// eslint-disable-next-line no-sparse-arrays
ret.push(handler.apply(handlerCtx, params.concat([, , , , , , , , , , event])));
} }
}); });
} }
......
...@@ -1198,14 +1198,17 @@ function handleEvent (event) { ...@@ -1198,14 +1198,17 @@ function handleEvent (event) {
} }
handler.once = true; handler.once = true;
} }
ret.push(handler.apply(handlerCtx, processEventArgs( const params = processEventArgs(
this.$vm, this.$vm,
event, event,
eventArray[1], eventArray[1],
eventArray[2], eventArray[2],
isCustom, isCustom,
methodName methodName
))); ) || [];
// 参数尾部增加原始事件对象用于复杂表达式内获取额外数据
// eslint-disable-next-line no-sparse-arrays
ret.push(handler.apply(handlerCtx, params.concat([, , , , , , , , , , event])));
} }
}); });
} }
......
...@@ -1290,14 +1290,17 @@ function handleEvent (event) { ...@@ -1290,14 +1290,17 @@ function handleEvent (event) {
} }
handler.once = true; handler.once = true;
} }
ret.push(handler.apply(handlerCtx, processEventArgs( const params = processEventArgs(
this.$vm, this.$vm,
event, event,
eventArray[1], eventArray[1],
eventArray[2], eventArray[2],
isCustom, isCustom,
methodName methodName
))); ) || [];
// 参数尾部增加原始事件对象用于复杂表达式内获取额外数据
// eslint-disable-next-line no-sparse-arrays
ret.push(handler.apply(handlerCtx, params.concat([, , , , , , , , , , event])));
} }
}); });
} }
......
...@@ -1155,14 +1155,17 @@ function handleEvent (event) { ...@@ -1155,14 +1155,17 @@ function handleEvent (event) {
} }
handler.once = true; handler.once = true;
} }
ret.push(handler.apply(handlerCtx, processEventArgs( const params = processEventArgs(
this.$vm, this.$vm,
event, event,
eventArray[1], eventArray[1],
eventArray[2], eventArray[2],
isCustom, isCustom,
methodName methodName
))); ) || [];
// 参数尾部增加原始事件对象用于复杂表达式内获取额外数据
// eslint-disable-next-line no-sparse-arrays
ret.push(handler.apply(handlerCtx, params.concat([, , , , , , , , , , event])));
} }
}); });
} }
......
...@@ -1140,14 +1140,17 @@ function handleEvent (event) { ...@@ -1140,14 +1140,17 @@ function handleEvent (event) {
} }
handler.once = true; handler.once = true;
} }
ret.push(handler.apply(handlerCtx, processEventArgs( const params = processEventArgs(
this.$vm, this.$vm,
event, event,
eventArray[1], eventArray[1],
eventArray[2], eventArray[2],
isCustom, isCustom,
methodName methodName
))); ) || [];
// 参数尾部增加原始事件对象用于复杂表达式内获取额外数据
// eslint-disable-next-line no-sparse-arrays
ret.push(handler.apply(handlerCtx, params.concat([, , , , , , , , , , event])));
} }
}); });
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册