美文网首页
vue 按钮防止重复点击

vue 按钮防止重复点击

作者: Enjoyhy | 来源:发表于2022-08-09 09:29 被阅读0次

第三方函数工具库:lodash
安装: npm i lodash
引入:import _ from ‘lodash’

//防抖

testDebounce: _.debounce(function() {
  console.log("debounce");
}, 2000, {
  leading: true,
  trailing: false
})

//节流

testThrottle: _.throttle(function() {
  console.log("throttle");
}, 5000, {
  leading: true,
  trailing: false
})

转载自Lodash节流与防抖总结

相关文章

网友评论

      本文标题:vue 按钮防止重复点击

      本文链接:https://www.haomeiwen.com/subject/fgzgwrtx.html