🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] #### 搜索节流 created() ~~~ import { debounce } from 'common/js/helpers' created() { // 监听query数据 this.$watch('content', debounce((newVal) => { this.$emit('inputVal', newVal) },200)) }, ~~~ >[danger] debounce 为节流函数 debounce ~~~ export function debounce (func, delay) { let timer return function (...args) { if (timer) { clearTimeout(timer) } timer = setTimeout(() => { func.apply(this, args) }, delay) } } ~~~