diff --git a/src/smart-apollo.js b/src/smart-apollo.js index a019930..aa46905 100644 --- a/src/smart-apollo.js +++ b/src/smart-apollo.js @@ -143,7 +143,7 @@ export default class SmartApollo { for (const handler of handlers) { if (handler) { catched = true - let result = handler.call(this.vm, ...args) + let result = handler.apply(this.vm, args) if (typeof result !== 'undefined' && !result) { break }