vue中防止防止重复提交

data(){ return{ isDisable:false } } methods:{ submit(){ this.isDisable=true setTimeout(()=>{ this.isDisable=false //点击一次时隔两秒后才能再次点击 },2000) } }

你可能感兴趣的:(vue中防止防止重复提交)