v-ons-progress-bar

The component is used to display a linear progress bar. It can either display a progress bar that shows the user how much of a task has been completed. In the case where the percentage is not known it can be used to display an animated progress bar so the user can see that an operation is in progress.

Tutorial

Progress

There are two components for indicating progress: VOnsProgressBar and VOnsProgressCircular. As the names imply, the VOnsProgressBar displays a linear progress bar while the VOnsProgressCircular displays a circular progress indicator.

They have the ability to show the current progress or a looping animation in cases where the current progress is not known.

Both components implement the same props.

To change the progress the value property is used. It should be a value between 0 and 100.

<v-ons-progress-bar :value="currentProgress"></v-ons-progress-bar>
<v-ons-progress-circular :value="currentProgress" /></v-ons-progress-circular>

Secondary value

It is sometimes necessary to display two different values in the same progress indicator. An example could be an app that streams a video. The progress bar could show both how much of the video has elapsed in addition to how much of the video that has been buffered.

To do this the secondaryValue property can be used.

<v-ons-progress-bar
  :value="elapsed"
  :secondaryValue="buffered"
>
</v-ons-progress-bar>

Indeterminate mode

There is also an indeterminate property which makes the component ignore both the value and secondaryValue properties. Instead, it show a looping animation. This can be useful for cases where the total progress is unknown, e.g. when waiting for some data to arrive.

<v-ons-progress-bar indeterminate></v-ons-progress-bar>

See also

Name Type Description
indeterminate Boolean If this attribute is set, an infinite looping animation will be shown. Optional.
modifier String Change the appearance of the progress indicator. Optional.
secondaryValue Number Current secondary progress. Should be a value between 0 and 100. Optional.
value Number Current progress. Should be a value between 0 and 100. Optional.
Name Description
material Display a Material Design progress bar.

Need Help?

If you have any questions, use our Community Forum or talk to us on Discord chat. The Onsen UI team and your peers in the community will work together to help solve your issues.

For bug reports and feature requests use our GitHub Issues page.