
npm install vue-steps-progress-baryou can see demo and docs here
```
npm install vue-steps-progress-bar
import the component and pass the options
`vue
`
call component methods using ref
`javascript
methods: {
someDummyFunction() {
// goes to the next step
this.$refs.progress.next()
// goes to the previous step
this.$refs.progress.prev()
// restarts the step progress bar
this.$refs.progress.restart()
}
}
``