Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 549 Bytes

README.md

File metadata and controls

32 lines (28 loc) · 549 Bytes

Vue Nice Progress

This is the light weight and good looking spiral progress bar with percantage value change and animation on intitalizing and on value change.

Image

J

Project setup

npm install vue-nice-progress

Usage

Basic Usage

<template>
  <vue-progress
    :value="percent"
  >
</template>
<script>
import VueProgress from 'vue-nice-progress'

export default {
    components:{VueProgress},
    data(){
      return {
        percent:50
      };
    }
}
</script>