给el-button添加点击防抖功能,防止误双击、短时间内多次点击等情况下多次触发click事件。
在main.js中:
Vue.component("ElButton").mixin({
data() {
return {
debounce: false
}
},
methods: {
//覆盖el-button的点击事件,使用的是vue2.5.2,发现为直接覆写了原方法
handleClick(evt) {
if (this.debounce) {
this.$message.warning("点太快了");
} else {
this.debounce = true;
this.$emit('click', evt);
setTimeout(() => {
this.debounce = false;
}, 1000);//延时时间
}
}
}
})