mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
19 lines
407 B
Svelte
19 lines
407 B
Svelte
<script lang="ts">
|
|
import { PaginationNav } from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<PaginationNav />
|
|
|
|
<PaginationNav
|
|
total="{3}"
|
|
loop
|
|
on:change="{(e) => {
|
|
console.log(e.detail); // { page: number; }
|
|
}}"
|
|
on:click:button--next="{(e) => {
|
|
console.log(e.detail); // { page: number; }
|
|
}}"
|
|
on:click:button--previous="{(e) => {
|
|
console.log(e.detail); // { page: number; }
|
|
}}"
|
|
/>
|