Gathering detailed insights and metrics for vue-paginate-al
Gathering detailed insights and metrics for vue-paginate-al
Gathering detailed insights and metrics for vue-paginate-al
Gathering detailed insights and metrics for vue-paginate-al
npm install vue-paginate-al
Typescript
Module System
Node Version
NPM Version
Vue (84.18%)
JavaScript (15.82%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
51 Stars
16 Commits
11 Forks
1 Watchers
12 Branches
2 Contributors
Updated on Jan 03, 2025
Latest Version
1.1.6
Package Id
vue-paginate-al@1.1.6
Unpacked Size
479.68 kB
Size
153.42 kB
File Count
8
NPM Version
6.0.0
Node Version
8.9.4
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1 npm install --save vue-paginate-al
1 import Vue from 'vue' 2 import VuePaginateAl from 'vue-paginate-al' 3 4 Vue.component('vue-paginate-al', VuePaginateAl)
1 <template> 2 <div> 3 // example 1 4 <vue-paginate-al :totalPage="10" @btnClick="goToFunction"></vue-paginate-al> 5 6 // example 2 => with background color 7 <vue-paginate-al :totalPage="15" activeBGColor="success" :withNextPrev="false"></vue-paginate-al> 8 9 // example 3 => with single data 10 <vue-paginate-al :totalPage="20" :myData="'myname'" @btnClick="goToFuncWithData"></vue-paginate-al> 11 12 // example 4 => with multiple data 13 <vue-paginate-al :totalPage="20" :myData="['myname', 'myemail']" @btnClick="goToFuncWithMultipleData"></vue-paginate-al> 14 </div> 15 </template> 16 17 <script> 18 import VuePaginateAl from 'vue-paginate-al' 19 20 export default { 21 name: 'App', 22 components: { 23 VuePaginateAl 24 }, 25 methods : { 26 goToFunction : function(n) 27 { 28 console.log(n); 29 }, 30 31 goToFuncWithData : function(n, data) 32 { 33 console.log(n, data); 34 }, 35 36 goToFuncWithMultipleData : function(n, data) 37 { 38 console.log(n, data[0], data[1]); 39 } 40 } 41 } 42 </script>
Props | Description | Type | Required | Example |
---|---|---|---|---|
totalPage | Total paginate | Number | true | 10 |
currentPage | Current page | Number | false | 2 |
myData | For callback data without process | String | false | 'myname' |
withNextPrev | To show or hide button next/prev | Boolean | false | true |
nextText | Text for button Next | String | false | 'Next' |
prevText | Text for button Prev | String | false | 'Prev' |
activeBGColor | Background color | String | false | 'primary' |
customActiveBGColor | Background color custom | String | false | '#bb06a9' |
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
Found 0/16 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
license file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
75 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More