BlazorUI Demo

Pagination

Bindable page navigation for local and server-backed collections.

Known page count
Current page: 3
View code
<BuiPagination @bind-Page="currentPage" PageCount="12" />
<BuiText Typo="Typo.Caption">Current page: @currentPage</BuiText>

@code {
    private int currentPage = 3;
}