2022-06-03Vue几秒 读完 (大约 78 个字)Vue中使用Lodash实现防抖和节流Lodash实现防抖和节流。 防抖为了实现lodash组件独立,需要在 created 中添加函数。 1234567891011121314151617181920app.component('save-button', { created() { // 使用 Lodash 实现防抖 this.debouncedClick = _.debounce(this.click, 500) }, unmounted() { // 移除组件时,取消定时器 this.debouncedClick.cancel() }, methods: { click() { // ... 响应点击 ... } }, template: ` <button @click="debouncedClick"> Save </button> `}) ref https://www.lodashjs.com/