使用throttle防止按钮多次点击
背景:如上图所示,点击按钮,防止按钮点击多次
<div class="footer"><el-button type="primary" @click="submitThrottle">发起咨询 </el-button>
</div>import { throttle } from 'lodash';submitThrottle: throttle(function() {this.onSubmit();}, 800, { leading: false, trailing: true })onSubmit() {console.log("xxx");}