Vue中使用lodash中的debounce防抖函数

// An highlighted block
//引入lodash中的debounce
import {debounce} from 'lodash'

//在methods中使用
search:debounce(function() {
      console.log('my fullname is chentingjun')
}, 500)

你可能感兴趣的:(vue小技巧,vue)