1.0.10 • Published 4 years ago

vue-countup-full v1.0.10

Weekly downloads
25
License
ISC
Repository
github
Last release
4 years ago

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?

npm install vue-countup-full

Example

<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

PropertyDescriptiontypedefault
valuethe value you want to arrive atNumber
countstepcount up step valueNumber
dirSupport English and Arabic numbersStringLTR
1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago