Gathering detailed insights and metrics for vue-lottie-player
Gathering detailed insights and metrics for vue-lottie-player
Gathering detailed insights and metrics for vue-lottie-player
Gathering detailed insights and metrics for vue-lottie-player
npm install vue-lottie-player
Typescript
Module System
Node Version
NPM Version
Vue (55.62%)
JavaScript (44.38%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
13 Stars
4 Commits
5 Forks
1 Watchers
26 Branches
1 Contributors
Updated on Jun 20, 2023
Latest Version
0.1.9
Package Id
vue-lottie-player@0.1.9
Unpacked Size
8.44 kB
Size
3.60 kB
File Count
8
NPM Version
6.14.4
Node Version
12.18.0
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
3
We currently support solids, shape layers, masks, alpha mattes, trim paths, and dash patterns. And we’ll be adding new features on a regular basis.
You can go forward, backward, and most importantly you can program your animation to respond to any interaction.
Bundle vector animations within your app without having to worry about multiple dimensions or large file sizes. Alternatively, you can decouple animation files from your app’s code entirely by loading them from a JSON API.
Learn more › http://airbnb.design/lottie/
Looking for lottie files › https://www.lottiefiles.com/
Install vue-lottie-player
npm install --save vue-lottie-player
Or
yarn add vue-lottie-player
Include in it either globally (in main.js) or a Vue component.\
Global:
1// main.js 2import Vue from "vue"; 3 4import VueLottiePlayer from "vue-lottie-player"; 5Vue.use(VueLottiePlayer);
Component:
1import VueLottiePlayer from "vue-lottie-player"; 2export default { 3 components: { 4 vLottiePlayer: VueLottiePlayer 5 } 6//...
1<script> 2import VueLottiePlayer from "vue-lottie-player"; 3export default { 4 name: "MyComponent", 5 components: { 6 vLottiePlayer: VueLottiePlayer 7 } 8}; 9</script> 10 11<template> 12 <div> 13 <div> 14 <h3>From url</h3> 15 <v-lottie-player 16 name="scooterAnim" 17 loop 18 path="https://assets2.lottiefiles.com/packages/lf20_hu2LUv.json" 19 /> 20 </div> 21 OR 22 <div> 23 <h3>From local</h3> 24 <vLottiePlayer 25 name="workoutMonkeyAnim" 26 loop 27 :animationData="require('./assets/workout-monkey.json')" 28 /> 29 </div> 30 </div> 31</template>
Props:
<v-lottie-player :animationData="require('./assets/workout-monkey.json')" />
<v-lottie-player path="https://assets2.lottiefiles.com/packages/lf20_hu2LUv.json" />
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/4 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
project is not fuzzed
Details
Reason
105 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