Replies: 2 comments
-
You can use an accessor options argument instead: const [pages, setPages] = createSignal(3);
const [props, page, setPage] = createPagination(
() => ({ pages: pages() })
); |
Beta Was this translation helpful? Give feedback.
0 replies
-
Oh, thanks, I've missed it accepts an accessor. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
About the pagination component: can the number of pages be changed dynamically? Unless I missed something, it doesn't seems so.
What about if the number of pages change during the pagination? For instance, scrolling through a log table which has items being added at the same time.
Beta Was this translation helpful? Give feedback.
All reactions