mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 10:21:05 +00:00
docs(pagination-nav): add more examples (#1514)
Adds "Reactive example," "Total," "Shown," and "Custom button text."
This commit is contained in:
parent
d9255e7441
commit
b5b392963e
2 changed files with 49 additions and 0 deletions
|
@ -0,0 +1,16 @@
|
|||
<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}
|
Loading…
Add table
Add a link
Reference in a new issue