mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
19 lines
399 B
Svelte
19 lines
399 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; }
|
|
}}
|
|
/>
|