diff --git a/src/utils/index.js b/src/utils/index.js
index 3225d3c4..407f16fa 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() {
+    args = arguments
     context = this
     timestamp = +new Date()
     const callNow = immediate && !timeout