https://github.com/behnamjz/vue-countup-full
It's a vue component that will count to a target number with support english and arabic numbers
https://github.com/behnamjz/vue-countup-full
Last synced: 3 months ago
JSON representation
It's a vue component that will count to a target number with support english and arabic numbers
- Host: GitHub
- URL: https://github.com/behnamjz/vue-countup-full
- Owner: behnamjz
- Created: 2019-12-29T11:25:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-01-06T21:47:07.000Z (over 5 years ago)
- Last Synced: 2025-02-18T00:02:47.404Z (4 months ago)
- Language: Vue
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-countup-full
> It's a vue component that will count to a target number with support english and arabic numbers
vue-countup-full is a dependency-free, lightweight vue component that can be overwrited by yourself.
You can set value and step count ,it will automatic count up with your step.
It is support vue-ssr.### How to use?
```bash
npm install vue-countup-full
```### Example
```vue
import countUp from 'vue-countup-full';
export default {
components: { countUp },
data () {
return {
value: 1000,
countstep: 20,
dir: 'RTl'
}
}
}```
### Options
| Property | Description | type | default |
| ----------------- | ---------------- | :--------: | :----------: |
| value | the value you want to arrive at |Number | |
| countstep | count up step value | Number | |
| dir | Support English and Arabic numbers | String | LTR |