Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Reference for Nuxt UI v4 (125+ components built on Reka UI + Tailwind CSS v4) including forms, overlays, and theming.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
components/pagination.md
1# Pagination23A list of buttons or links to navigate through pages.45> Based on [Reka UI Pagination](https://reka-ui.com/docs/components/pagination)67## Key Props89- `total`: to set the total number of items in the list.10- `color`: to set the color of the inactive controls.11- `variant`: to set the variant of the inactive controls.12- `size`: to set the size of the controls.13- `disabled`: to disable the pagination controls.14- `to`: to transform buttons into links.1516## Usage1718```vue19<UPagination20<!-- props here -->21/>22```23