fmt
Some checks failed
Deploy / deploy (build, debian, 22, /root/OJDeploy/data/clientnext) (push) Has been cancelled
Deploy / deploy (build:staging, school, 8822, /root/OJ/data/dist) (push) Has been cancelled

This commit is contained in:
2026-07-03 09:59:15 -06:00
parent 47281029ec
commit 1cac0d01f8
10 changed files with 79 additions and 44 deletions

View File

@@ -7,7 +7,11 @@ interface Props {
page: number
}
const { total, limit: initialLimit = 10, page: initialPage = 1 } = defineProps<Props>()
const {
total,
limit: initialLimit = 10,
page: initialPage = 1,
} = defineProps<Props>()
const emit = defineEmits(["update:limit", "update:page"])