
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@667/vue-number-animation
Advanced tools
This is a Vue number plugin. It animates the number that you pass in prop.
This is a Vue number plugin. It animates the number that you pass in prop.
https://codesandbox.io/s/8256nwlq78
Get the package:
npm install vue-number-animation
Register Animate Number in your app:
import Vue from 'vue'
import VueNumber from 'vue-number-animation'
Vue.use(VueNumber)
In your Vue file you can call it like this:
<number
ref="number1"
:from="100"
:to="10000"
:format="theFormat"
:duration="5"
:delay="2"
easing="Power1.easeOut"/>
<number
tag="div"
animationPaused
ref="number2"
:to="10000"
:duration="5"
easing="Back.easeIn"
@complete="completed"
@click="playAnimation"/>
<script>
export default {
// Sets the format of the number
methods: {
theFormat(number) {
return number.toFixed(2);
},
completed() {
console.log('Animation ends!');
},
playAnimation() {
this.$refs.number2.play()
}
}
}
</script>
Required Prop
| Property | Description | Type | Default |
|---|---|---|---|
| to | Animation end point | Number | - |
Optional Props
| Property | Description | Type | Default |
|---|---|---|---|
| tag | Element wrapper | String | 'span' |
| from | Animation start point | Number | 0 |
| duration | Duration of the animation (seconds) | Number | 1 |
| delay | Amount of delay (seconds) before the animation starts | Number | 0 |
| easing | Ease of the animation | String | 'Power1.easeOut' |
| animationPaused | Pauses animation at starting point | Boolean | false |
Choose from various eases to control the rate of change during the animation. These are all the values that the prop gets. https://greensock.com/docs/Easing
Don't forget the '.' between ease name eg. Circ.easeInOut
Events
| Event | Description |
|---|---|
| @start | Called when the animation has started |
| @complete | Called when the animation has completed |
| @update | Called every time the animation updates (on every frame while the animation is active) |
Methods
| Method | Description |
|---|---|
| play() | Starts the animation |
| pause() | Pauses the animation |
| restart() | Restarts and begins playing forward from the beginning |
MIT
FAQs
This is a Vue number plugin. It animates the number that you pass in prop.
The npm package @667/vue-number-animation receives a total of 2 weekly downloads. As such, @667/vue-number-animation popularity was classified as not popular.
We found that @667/vue-number-animation 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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.