Skip to content

防抖

增加内置指令:v-debounce

ts
// 执行方法
const handleClick = async () => {
    return new Promise((reslove, reject) => {
        setTimeout(reslove, 2000)
    })
}
vue
// 其中1000为防抖时间,如果不设置,则默认为500毫秒
<el-button v-debounce="1000" @click="handleClick"></el-button>

广州宝点数字化科技