mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 02:45:49 +02:00
enhance(std-table): change debounce to trailing
This commit is contained in:
parent
1bbc84359b
commit
f42648e64a
1 changed files with 2 additions and 2 deletions
|
@ -153,8 +153,8 @@ const batchColumns = computed(() => {
|
||||||
})
|
})
|
||||||
|
|
||||||
const get_list = _.debounce(_get_list, 100, {
|
const get_list = _.debounce(_get_list, 100, {
|
||||||
leading: true,
|
leading: false,
|
||||||
trailing: false,
|
trailing: true,
|
||||||
})
|
})
|
||||||
|
|
||||||
const filterParams = reactive({})
|
const filterParams = reactive({})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue