Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
micropagination
Advanced tools
Pagination component and composable to simplify pagination in vue3
You can install using any package manager
npm install --save micropagination
With yarn:
yarn add micropagination
With pnpm:
pnpm add micropagination
Then, you can import the component
import Micropagination from 'micropagination';
And use it in your project:
<template>
<Micropagination @change="changePage" />
</template>
<script lang="ts" setup>
import Micropagination from 'micropagination';
const changePage = (page: number) => console.log('New page: ', page);
</script>
Name | Type | Required | Default | Description |
---|---|---|---|---|
currentPage | string | false | 1 | Current active page |
perPage | string | false | 10 | Items count for one page |
total | number | false | 100 | Total count of items |
Name | Description |
---|---|
change | Handle click |
Slots:
<template>
<Micropagination
@change="handleChange"
currentPage="2"
perPage="5"
:total="200"
>
<template v-slot:prev-button>
<div>prev</div>
</template>
<template v-slot:next-button>
<div>next</div>
</template>
</Micropagination>
</template>
Name | Value |
---|---|
--primary-color | #42b984 |
--pg-item-width | 40px |
--pg-item-height | 40px |
--pg-item-border-radius | 50% |
--pg-item-distance | 5px |
This package also provides a usePagination
composable to handle the pagination, and here show you how to use it:
<template>
<ul v-if="data && data.length">
<li v-for="item in data" :key="item.id">
<p>{{ item.content }}</p>
</li>
</ul>
<hr />
<Micropagination
:current-page="page"
:per-page="perPage"
:total="total"
@change="changePage"
v-if="total"
/>
</template>
<script setup lang="ts">
import Micropagination, { usePagination, type CallbackParams } from "micropagination";
import { unref } from "vue";
type Data = {
id: string;
content: string;
};
// Receive a callback and a default params object
const { data, page, total, perPage, changePage } = usePagination<Data>(
paginationCallback,
{
perPage: 5,
}
);
async function paginationCallback(params: CallbackParams) {
// unref to avoid the ref wrapper
const page = unref(params.page);
const pageSize = unref(params.perPage);
// get the api result passing the pagination parameters
const result = await api({ page, pageSize });
// change the reactive variable values
return {
total: result.pagination.total,
pageCount: result.pagination.pageCount,
data: result.data,
};
}
</script>
This project is licensed under the MIT License
FAQs
Pagination component and composable to simplify pagination in vue3
The npm package micropagination receives a total of 4 weekly downloads. As such, micropagination popularity was classified as not popular.
We found that micropagination demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.