vue , debounce 使用


 

有时候不想直接在methods中的方法前面加debounce,

getFullName: debounce(function() {
      console.log('my fullname is chentingjun')
}, 500)

会很难看,而且参数也不好传,可以用另一种方法

<template>
  <div class="demo">demo</div>
</template>

<script>
import _ from 'lodash'
export default {
  name: 'demo',
  methods: {
    getName() {
      console.log('my name is ctj')
      return
    }
  },
  mounted() {
    this.debounceGetName = _.debounce(this.changeStr, 500)
  }
}
</script>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM