This commit is contained in:
2025-05-24 01:49:48 +09:00
commit 62abbcf4eb
2376 changed files with 325522 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
### Undeterminate progress
In some particular use cases, you might want to show an undetermined progress.
If you want your progress bars to show an undetermined state,
you just need to omit the `value` prop. The CSS will take care of the rest.
<!--code-->
```vue
<template>
<VProgress size="tiny" />
<VProgress size="tiny" color="success" />
<VProgress size="tiny" color="info" />
<VProgress size="tiny" color="warning" />
<VProgress size="tiny" color="danger" />
</template>
```
<!--/code-->
<!--example-->
<div class="field">
<div class="control">
<VProgress size="tiny" />
<VProgress size="tiny" color="success" />
<VProgress size="tiny" color="info" />
<VProgress size="tiny" color="warning" />
<VProgress size="tiny" color="danger" />
</div>
</div>
<!--/example-->