在vue2中使用lodash的debounce
- npm install lodash
import _ from lodash //组件中引入
......
created() {
this.inputSearch = _.debounce(this.inputSearch, 500) //搜索框防抖
},
methods: {
inputSearch() {
console.log('输入框进行远程搜索----需要处理的方法体')
}
}
在vue2中使用lodash的debounce
- npm install lodash
import _ from lodash //组件中引入
......
created() {
this.inputSearch = _.debounce(this.inputSearch, 500) //搜索框防抖
},
methods: {
inputSearch() {
console.log('输入框进行远程搜索----需要处理的方法体')
}
}