如何在去抖/节气门中有动态时间?

时间:2019-01-08 20:07:53

标签: javascript vue.js lodash

我正在Vue中尝试使用类似的东西:

props(){
   debouncing: {type: Number, default: 0}
},
methods: {
    clicked: _.debounce(function() {
        this.$emit('click');
    }, this.debouncing),
}

但是,例如当设置为debouncing = 4000

时,这将不起作用

1 个答案:

答案 0 :(得分:0)

感谢@RoyJ的评论:

computed:{
    clicked(){
        return _.debounce(this.click, this.debouncing)
    }
},
methods:{
    click(){
       this.$emit('click');
    },
}