# vue-countup-full

> > It's a vue component that will count to a target number with support english and arabic numbers

Latest version **1.0.10** (published 2020-01-07) · ISC license · 0 weekly downloads

## Install

```sh
npm install vue-countup-full
pnpm add vue-countup-full
yarn add vue-countup-full
bun add vue-countup-full
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.10 |
| Published | 2020-01-07 |
| First published | 2019-12-29 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 7.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | behnam jaberi, shadi farzankia |
| Maintainers | bihnam, shadifarzankia |
| Keywords | vue, countup, nuxt, vue-countup-full |

## Links

- npm: https://www.npmjs.com/package/vue-countup-full
- Repository: https://github.com/behnamjz/vue-countup-full
- Homepage: https://github.com/behnamjz/vue-countup-full#readme
- Issues: https://github.com/behnamjz/vue-countup-full/issues
- npm.io page: https://npm.io/package/vue-countup-full

## Recent versions

- 1.0.10 (latest) — 2020-01-07
- 1.0.9 — 2019-12-29
- 1.0.8 — 2019-12-29
- 1.0.7 — 2019-12-29
- 1.0.6 — 2019-12-29
- 1.0.5 — 2019-12-29
- 1.0.4 — 2019-12-29
- 1.0.3 — 2019-12-29
- 1.0.2 — 2019-12-29
- 1.0.1 — 2019-12-29
- 1.0.0 — 2019-12-29

## 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 easing by yourself.
You can set value and count step ,it will automatic count up with your step :D
It is support vue-ssr.


### How to use?
```bash
npm install vue-countup-full
```

### Example

```vue
<template>
  <countup :value='value' :countstep='countstep' :dir='dir'></countup>
</template>

<script>
  import countUp from 'vue-countup-full';
  export default {
    components: { countUp },
    data () {
      return {
        value: 1000,
        countstep: 20,
        dir: 'RTl'
      }
    }
  }
</script>
```

### 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 |

---
_Source: https://npm.io/package/vue-countup-full · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
