fix 工具库防抖函数 无法正确获取传参

This commit is contained in:
caohengxing 2020-08-27 16:04:52 +08:00
parent 5e7113935c
commit 496fed0667
1 changed files with 2 additions and 1 deletions

View File

@ -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