合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
[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) } } ~~~