util.js 298 B

12345678910111213141516
  1. // 防抖
  2. export function debounce(fn, wait) {
  3. let delay = wait || 200
  4. let timer
  5. return function() {
  6. let th = this
  7. let args = arguments
  8. if (timer) {
  9. clearTimeout(timer)
  10. }
  11. timer = setTimeout(function() {
  12. timer = null
  13. fn.apply(th, args)
  14. }, delay)
  15. }
  16. }