mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
16 lines
312 B
Svelte
16 lines
312 B
Svelte
<script>
|
|
import { PaginationNav, Button } from "carbon-components-svelte";
|
|
|
|
let page = 2;
|
|
</script>
|
|
|
|
<PaginationNav bind:page />
|
|
|
|
<div style="margin: var(--cds-layout-01) 0">
|
|
<Button on:click="{() => (page = 0)}" disabled="{page === 0}">
|
|
Set page to 0
|
|
</Button>
|
|
</div>
|
|
|
|
<strong>page:</strong>
|
|
{page}
|