Pagination     

Quasar Pagination is a Web Component ready to use where a pagination system is needed.

Basic Usage

<q-pagination
v-model="page"
:max="17"
></q-pagination>

Vue Properties

Vue PropertyRequiredDescription
minNumber of the first page; Default: 1
maxYesNumber of last page
disableBoolean. If no value is provided (empty attribute), then it’s considered as set to true.

Vue Methods

Vue MethodDescription
set(value)Parses and sets page number to value.
setByOffset(value)Parses and sets page number to current value + value. Negative values allowed.

Vue Events

Vue EventDescription
@inputTriggered on model value change with the new value.