const debounce = (fn, delay) => { let timer; return () => { if(timer) ... 防抖函数应用比较频繁,所以在vue中应该进一步封装到util.js公共函数库中并暴露出来.
確定! 回上一頁