安装
npm i lodash-es
引入
import { debounce } from 'lodash-es'
vue3使用方式
html部分
<a-select v-model:value="formState.unit" show-search placeholder="请选择关联单位"
:default-active-first-option="false" :show-arrow="false" :filter-option="false" :not-found-content="null"
:options="data" @search="handleSearch" @change="handleChange"></a-select>
js部分
const handleSearch = debounce((value) => {
campusName.value = value;
if(value){
getDeptList()
}
},1000)