Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
vue-countup-v2
Advanced tools
Vue.js component wrap for CountUp.js
$ npm install --save countup.js vue-countup-v2
<template>
<div class="iCountUp">
<ICountUp
:startVal="startVal"
:endVal="endVal"
:decimals="decimals"
:duration="duration"
:options="options"
@ready="onReady"
/>
</div>
</template>
<script type="text/babel">
import ICountUp from 'vue-countup-v2';
export default {
name: 'demo',
components: {
ICountUp
},
data() {
return {
startVal: 0,
endVal: 120500,
decimals: 0,
duration: 2.5,
options: {
useEasing: true,
useGrouping: true,
separator: ',',
decimal: '.',
prefix: '',
suffix: ''
}
};
},
methods: {
onReady: function(instance, CountUp) {
const that = this;
instance.update(that.endVal + 100);
}
}
};
</script>
<style scoped>
.iCountUp {
font-size: 12em;
margin: 0;
color: #4d63bc;
}
</style>
startVal
[Number]
Optional; 0
by defualt. The value you want to begin at.
endVal
[Number]
Required; The value you want to arrive at.
decimals
[Number]
Optional; 0
by defualt. Number of decimal places in number.
duration
[Number]
Optional; 2
by defualt. Duration in seconds.
options
[Object]
Optional; Formatting/easing options object.
See more countUp.js
start
pauseResume
reset
update
Learn more countUp.js
MIT
FAQs
A CountUp component for Vue
We found that vue-countup-v2 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.