lion/docs/components/pagination/overview.md
2022-03-30 12:37:30 +02:00

29 lines
738 B
Markdown

# Pagination >> Overview ||10
A web component that handles pagination.
```js script
import { html } from '@mdjs/mdjs-preview';
import '@lion/pagination/define';
```
```js preview-story
export const main = () => html` <lion-pagination count="20" current="10"></lion-pagination> `;
```
## Features
- You can pass the total number of pages in the `count` parameter, and the current page in the `current` parameter. If `current` is not defined it will default to the value 1.
- On a click or parameter change of `current` it will fire an event back called `current-changed`.
## Installation
```bash
npm i --save @lion/pagination
```
```js
import { LionPagination } from '@lion/pagination';
// or
import '@lion/pagination/define';
```