An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

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

![](https://img.shields.io/badge/license-MIT-blue.svg)
![](https://img.shields.io/badge/status-stable-green.svg)

---

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