From fa1ef6c545ecc8d03b621f85ed82dc8f45a66852 Mon Sep 17 00:00:00 2001 From: Junseong Park Date: Tue, 30 Jul 2024 13:17:24 +0900 Subject: [PATCH] i18n(ko-KR): update `routing.mdx` --- src/content/docs/ko/guides/routing.mdx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/content/docs/ko/guides/routing.mdx b/src/content/docs/ko/guides/routing.mdx index aa38a96893ddc..7e0f13246c0dc 100644 --- a/src/content/docs/ko/guides/routing.mdx +++ b/src/content/docs/ko/guides/routing.mdx @@ -408,7 +408,7 @@ interface Page { total: number; /** 1부터 시작하는 현재 페이지 번호 */ currentPage: number; - /** 페이지당 항목 수(기본값: 25) */ + /** 페이지당 항목 수 (기본값: 10) */ size: number; /** 마지막 페이지 수 */ lastPage: number; @@ -419,10 +419,16 @@ interface Page { prev: string | undefined; /** 다음 페이지의 URL (존재하는 경우) */ next: string | undefined; + /** 첫 페이지의 URL (현재 페이지가 첫 페이지가 아닌 경우) */ + first: string | undefined; + /** 다음 페이지의 URL (현재 페이지가 마지막 페이지가 아닌 경우) */ + last: string | undefined; }; } ``` +[페이지네이션의 `page` prop](/ko/reference/api-reference/#페이지네이션의-page-prop)에 대해 알아보세요. + ### 중첩된 페이지네이션 페이지네이션의 고급 사용 사례는 **중첩 페이지네이션**입니다. 이는 페이지네이션이 다른 동적 경로 매개변수와 결합되는 경우입니다. 중첩된 페이지네이션을 사용하여 페이지가 매겨진 컬렉션을 일부 속성이나 태그별로 그룹화할 수 있습니다.