This commit is contained in:
2025-05-10 20:17:10 +08:00
parent 734fc7d083
commit 805cbac1ff
5 changed files with 7 additions and 5 deletions

View File

@@ -98,7 +98,7 @@ async function listComments() {
onMounted(listComments)
watch(() => [query.page, query.limit], listComments)
watchDebounced(() => [query.problem], listComments, {
watchDebounced(() => query.problem, listComments, {
debounce: 500,
maxWait: 1000,
})