UNPKG

iview

Version:

A high quality UI components Library with Vue.js

15 lines (14 loc) 337 B
export function debounce(fn) { let waiting; return function() { if (waiting) return; waiting = true; const context = this, args = arguments; const later = function() { waiting = false; fn.apply(context, args); }; this.$nextTick(later); }; }