Pagination — Svelte

Pagination component — Svelte.

Pagination component

First/last links, ellipsis, and hrefTemplate for URLs.

Examples

Live examples

Usage

svelte svelte
<script>
  import Pagination from './components/svelte/Pagination.svelte';
</script>

<Pagination
  currentPage={page}
  totalPages={totalPages}
  hrefTemplate="/posts?page={page}"
/>
<Pagination currentPage={1} totalPages={5} showFirstLast={false} />