Skip to content

Pagination

When there is too much data, use pagination to break down the data.

Basic Usage

Use v-model to bind the current page number, set total for total number of items, and page-size for items per page (default is 10). The total number of pages is automatically calculated based on total and page-size.

html
<wd-pagination v-model="value" @change="handleChange" />
typescript
const value = ref<number>(1)
function handleChange({ value }) {
  console.log(value)
}

Icon Display

Set the show-icon property to display pagination navigation as Icon icons.

html
<wd-pagination v-model="value" @change="handleChange" show-icon ></wd-pagination>

Text Tips

Set the show-message property to display text tips.

html
<wd-pagination 
  v-model="value" 
  :total="total" 
  :page-size="page" 
  @change="handleChange" 
  show-icon 
  show-message
/>

Attributes

AttributeDescriptionTypeOptionsDefaultVersion
v-modelBinding valuenumber---
prev-textPrevious page button textstring-Previous-
next-textNext page button textstring-Next-
total-pageTotal pages, if total exists, total will be used first to calculate pagesnumber-Calculated based on pages-
page-sizeItems per pagenumber-10-
totalTotal number of itemsnumber---
show-iconWhether to show pagination iconsboolean-false-
show-messageWhether to show text tipsboolean-false-
hide-if-one-pageWhether to hide when there is only one pageboolean-true-

Events

Event NameDescriptionParametersVersion
changeValue change event{ value }, value is the current value-

External Classes

Class NameDescriptionVersion
custom-classRoot node style-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.