Gathering detailed insights and metrics for vuescroll
Gathering detailed insights and metrics for vuescroll
Gathering detailed insights and metrics for vuescroll
Gathering detailed insights and metrics for vuescroll
npm install vuescroll
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
1,269 Stars
635 Commits
111 Forks
17 Watching
3 Branches
8 Contributors
Updated on 28 Nov 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-1.6%
1,986
Compared to previous day
Last week
0.8%
11,044
Compared to previous week
Last month
-0.5%
46,950
Compared to previous month
Last year
-16.8%
606,063
Compared to previous year
1
34
Vuescroll is a scrollbar plugin based on Vue.js 2.X, it is very easy to use, no complex options and each option has its default value(It means you don't even have to write any configuration). Just wrap the content by <vue-scroll>
and a custom scrollbar will show. It supports:
vue version | vuescroll version |
---|---|
2.x | <=4.X |
3.x | >=5.0.0 |
1npm i vuescroll -S 2 3# OR 4 5yarn add vuescroll 6
1import vuescroll from 'vuescroll'; 2import Vue from 'vue'; 3 4Vue.use(vuescroll, { 5 ops: { 6 // The global config 7 }, 8 name: 'myScroll' // customize component name, default -> vueScroll 9}); 10 11// OR 12 13Vue.component('vue-scroll', vuescroll);
1import { createApp } from 'vue'; 2import vuescroll from 'vuescroll'; 3 4const app = createApp(App); 5 6// You can set global config here. 7app.use(vuescroll, { 8 ops: { 9 // The global config 10 }, 11 name: 'myScroll' // customize component name, default -> vueScroll 12});
1<div class="container"> 2 <vue-scroll> 3 <div class="content"></div> 4 </vue-scroll> 5</div>
For detailed docs, please see Guide section on the website.
MIT By Yves Wang(Wangyi Yi)
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 1
Reason
Found 2/30 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
80 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
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