You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For more comprehensive documentation and examples, please visit the [online documentation](https://vue-interface.github.io/packages/pagination/).
30
-
25
+
To create a pagination component, use the parent `pagination` class and then add the `pagination-link` class to the links in the pagination. Use the `active` class to indicate the current page and `disabled` class for non-clickable links.
26
+
27
+
<divclass="flex flex-col gap-3">
28
+
<!-- #region basicUsage -->
29
+
<div class="pagination">
30
+
<a href="#" class="pagination-link">«</a>
31
+
<a href="#" class="pagination-link">1</a>
32
+
<div class="pagination-link active disabled">2</div>
0 commit comments