determinate
Animated| type | values | default |
|---|---|---|
| Boolean | false |
In the determinate state, the component not only shows the progress circle but also indicates that data is being loaded. The legend is visible, unlike in the loading state where it fades out.
Custom loader
Custom loading circle can be created with loader !
Usage 📜
vue
<ve-progress determinate />
<ve-progress :determinate="true" />Examples
js
<template>
<ve-progress :determinate="true" :progress="50"/>
</template>