在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('输入框进行远程搜索----需要处理的方法体')
}
}
本文标题:vue中使用lodash的debounce
本文链接:https://www.haomeiwen.com/subject/npbszdtx.html
网友评论