1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00

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

This commit is contained in:
caohengxing 2020-08-27 16:04:52 +08:00
parent 5e7113935c
commit 496fed0667

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