摘要: //js /** * 函数节流 * @param func * @param wait * @returns {function(...[*]=)} */ export const throttle = (func, wait = 1500) => { let timeout; return fun 阅读全文
posted @ 2021-03-31 13:32 茗涵 阅读(97) 评论(0) 推荐(0) 编辑