Gathering detailed insights and metrics for vue-uiv
Gathering detailed insights and metrics for vue-uiv
Gathering detailed insights and metrics for vue-uiv
Gathering detailed insights and metrics for vue-uiv
npm install vue-uiv
Typescript
Module System
Min. Node Version
Node Version
NPM Version
76.1
Supply Chain
99.1
Quality
75.1
Maintenance
100
Vulnerability
100
License
JavaScript (79.95%)
Vue (20.05%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
941 Stars
1,984 Commits
183 Forks
31 Watchers
18 Branches
47 Contributors
Updated on Feb 28, 2025
Latest Version
0.21.5
Package Id
vue-uiv@0.21.5
Unpacked Size
1.24 MB
Size
323.30 kB
File Count
83
NPM Version
5.7.1
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
85
uiv is a Bootstrap 3 component lib implemented by Vue 2.
uiv.min.js
can be used in all environments (including browser)uiv.esm.js
is for modern bundlers like webpack 2 or rollupuiv.common.js
is for older bundlers like browserify or webpack 1.To check out live examples and docs, visit https://uiv.wxsm.space.
If you are using module bundlers such as Webpack, you can directly include package into your project via:
NPM:
1$ npm install uiv --save
or Yarn:
1$ yarn add uiv
Then register uiv components and directives all at once in your app's entry:
1// main.js 2import 'bootstrap/dist/css/bootstrap.min.css' 3 4import Vue from 'vue' 5import * as uiv from 'uiv' 6 7Vue.use(uiv)
That's it. Happy coding!
All components & directives will be installed with no prefix by default, you can add any prefix to them to avoid conflicts with other libs if needed.
For example:
1Vue.use(uiv, {prefix: 'uiv'})
Results in:
<alert>
becomes <uiv-alert>
v-tooltip
becomes v-uiv-tooltip
$alert
becomes $uiv_alert
If you don't want all of the components for some reason (e.g. to save the bundle size), you can also import them individually.
1import { Alert } from 'uiv' 2 3new Vue({ 4 components: { 5 Alert 6 } 7})
You can load & install uiv package directly in browsers. For example:
1<!-- Remember to import Vue and Bootstrap CSS file before this! --> 2<script src="//unpkg.com/uiv"></script>
This will simply load the latest version of uiv.min.js
into your page. For detail usages (e.g. load specify version, IMPORTANT in production mode) and different CDN providers, you can visit:
1<!-- index.html --> 2<html> 3<head> 4 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> 5 <script type="text/javascript" src="//vuejs.org/js/vue.min.js"></script> 6 <script type="text/javascript" src="//unpkg.com/uiv/dist/uiv.min.js"></script> 7</head> 8<body> 9<div id="app"> 10 <tabs> 11 <tab>Tab content 1.</tab> 12 <tab>Tab content 2.</tab> 13 </tabs> 14</div> 15<script> 16 // No need to install uiv, we already do this for you after script loaded. 17 new Vue().$mount('#app') 18</script> 19</body> 20</html>
This will create a working Tabs component on your page.
All browsers supported by Vue 2 and Bootstrap 3 CSS are suppose to be also supported by this lib (IE8 and below are not supported).
Detailed changes for each release are documented in the release notes.
Welcome and thanks to use and contribute to this project. Your support is very important.
If you found any problem / bug during the use of uiv, or have any suggustion that can make this lib better, please create an issue.
Pull requests are also welcome! However, before you started working on a PR, it is highly recommend to create an issue with your idea first, so people can know what's going to happen and avoid duplicated work.
1# install dependencies 2npm install 3 4# serve demos & docs with hot reload at localhost:8080 5npm run dev 6 7# build dist 8npm run dist 9 10# build document 11npm run build 12 13# run all tests 14npm test
MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
Found 0/30 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
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
Project has not signed or included provenance with any releases.
Details
Reason
16 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
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