enhance(std-table): change debounce to trailing

This commit is contained in:
Jacky 2024-10-24 21:43:17 +08:00
parent 1bbc84359b
commit f42648e64a
No known key found for this signature in database
GPG key ID: 215C21B10DF38B4D

View file

@ -153,8 +153,8 @@ const batchColumns = computed(() => {
})
const get_list = _.debounce(_get_list, 100, {
leading: true,
trailing: false,
leading: false,
trailing: true,
})
const filterParams = reactive({})