vue 防抖 节流

防抖

使用Lodash 工具库 

引入 import _ from 'lodash'

testMesssge: _.debounce(function() {
      console.log('22')
}, 500)
 节流
testMesssge: _.debounce(function() {
      console.log('22')
}, 500)
posted @ 2020-10-21 14:14  Kipper_liu  Views(79)  Comments(0)    收藏  举报