https://github.com/vue-bulma/progress-bar
ProgressBar Component for Vue Bulma
https://github.com/vue-bulma/progress-bar
Last synced: 5 months ago
JSON representation
ProgressBar Component for Vue Bulma
- Host: GitHub
- URL: https://github.com/vue-bulma/progress-bar
- Owner: vue-bulma
- License: mit
- Created: 2016-07-11T09:38:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-03T07:24:10.000Z (over 8 years ago)
- Last Synced: 2025-06-11T13:25:00.165Z (5 months ago)
- Language: Vue
- Size: 8.79 KB
- Stars: 12
- Watchers: 0
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-vue-refactor - vue-bulma-progress-bar
- awesome-vuejs - vue-bulma-progress-bar
README
# ProgressBar
ProgressBar component for Vue Bulma.
## Installation
```
$ npm install vue-bulma-progress-bar --save
```
## Examples
```vue
import ProgressBar from 'vue-bulma-progress-bar'
export default {
components: {
ProgressBar
},
data () {
return {
dynamicValue: 60
}
},
methods: {
plus () {
if (this.dynamicValue === 100) return
this.dynamicValue += 10
},
minus () {
if (this.dynamicValue === 0) return
this.dynamicValue -= 10
}
}
}
```
## Badges


---
> [fundon.me](https://fundon.me) ·
> GitHub [@fundon](https://github.com/fundon) ·
> Twitter [@_fundon](https://twitter.com/_fundon)