This commit is contained in:
kakkokari-gtyih 2025-08-21 19:17:05 +09:00
parent da8b24135b
commit 116ad9595a
1 changed files with 1 additions and 0 deletions

View File

@ -64,6 +64,7 @@ const q = ref<string | null>(null);
watch(order, () => { watch(order, () => {
props.paginator.order.value = order.value; props.paginator.order.value = order.value;
props.paginator.initialDirection = order.value === 'oldest' ? 'newer' : 'older';
props.paginator.reload(); props.paginator.reload();
}); });