<el-button v-if="showBtn !== 'no'" v-preventReClick style="width: 120px; backgroundColor: #007c84; color: #fff;marginLeft: 80px;" @click.stop="commitData" round >确定</el-button >
Vue 指令:
directives: { 'preventReClick': (el, binding) => { el.addEventListener('click', () => { if (!el.disabled) { el.disabled = true; setTimeout(() => { el.disabled = false; }, binding.value || 2500); } }) } },
标签:el,binding,多次,disabled,有效,preventReClick,提交,click From: https://www.cnblogs.com/hahahakc/p/16651168.html