IT
페이지네이션 현재 페이지 10개만 가져오기 예시 pagination
agnusdei1207
2023. 4. 25. 11:04
반응형
SMALL
getCurrentPageLogs() {
return this.orderInfo.logs.splice(
(this.pageInfo.currentPage - 1) * this.pageInfo.itemsPerPage,
this.pageInfo.currentPage - 1 + this.pageInfo.itemsPerPage
);
}
반응형
LIST