
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
A simple pagination bar for vue3, including size Menu, i18n support features
If you are using vue 2.x
version, please use v-page 2.x version instead
Documentation and examples and please visit below sites
# npm
npm i v-page
# yarn
yarn add v-page
# pnpm
pnpm add v-page
Include and install plugin in your main.js
file
import { createApp } from 'vue'
import App from './app.vue'
import { PaginationBar } from 'v-page'
const app = createApp(App)
// install component globally
app.use(PaginationBar, {
// globally config options
})
app.mount('#app')
Use v-page
as a locally component
<template>
<PaginationBar />
</template>
<script setup>
import { PaginationBar } from 'v-page'
</script>
<template>
<PaginationBar
v-model="pageNumber"
:total-row="totalRow"
@change="paginationChange"
>
<PaginationPageSizeOptions />
<PaginationInfo />
<PaginationFirstPage />
<PaginationPreviousPage />
<PaginationPageNumbers />
<PaginationNextPage />
<PaginationLastPage />
</PaginationBar>
</template>
<script setup lang='ts'>
import { ref } from 'vue'
import {
PaginationBar,
PaginationPageSizeOptions,
PaginationInfo,
PaginationPanel,
PaginationPageNumbers,
PaginationFirstPage,
PaginationPreviousPage,
PaginationNextPage,
PaginationLastPage
} from 'v-page'
import type { PageInfo } from 'v-page'
// set default page to 3
const pageNumber = ref<number>(3)
const totalRow = ref<number>(100)
// respond for pagination change
function paginationChange (data: PageInfo): void {
console.log(data) // { pageNumber: 1, pageSize: 10, totalPage: 10 }
}
</script>
3.3.0 (2024-12-25)
pageSizeOptions
, info
, first
and last
propsFAQs
A simple pagination bar
The npm package v-page receives a total of 285 weekly downloads. As such, v-page popularity was classified as not popular.
We found that v-page demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.