直接上代码
<template>
<div id="app">
<h1 @click="increase">{{num}}</h1>
</div>
</template>
<script>
export default {
name: 'App',
data() {
return {
num:0,
onpresscTime:0 // 阻止短时间内连续点击
}
},
methods:{
increase() {
// 两秒后再执行
// 当前时间和上次点击的时候进行对比,大于2000微秒才执行
if ((Date.now() - this.onpresscTime) > 2000) {
this.onpresscTime = Date.now()
this.num+=1
}
}
}
}
</script>