diff --git a/src/utils/index.js b/src/utils/index.js index 3225d3c4..15bd61d4 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -271,7 +271,8 @@ export function debounce(func, wait, immediate) { } } - return function(...args) { + return function(...args1) { + args = args1 context = this timestamp = +new Date() const callNow = immediate && !timeout