Progress
Demos
<template>
<article>
<section>
<veui-number-input
v-model="value"
:min="0"
:decimal-place="1"
:max="100"
/>
</section>
<section>
<veui-checkbox v-model="desc">
Description
</veui-checkbox>
<veui-checkbox
v-model="autoSucceed"
:true-value="200"
>
Autosucceed
</veui-checkbox>
<veui-checkbox
v-model="type"
true-value="circular"
false-value="bar"
>
Circular
</veui-checkbox>
<veui-checkbox
v-model="indeterminate"
>
Indeterminate
</veui-checkbox>
</section>
<section>
<veui-progress
:type="type"
:value="value"
:desc="desc"
:autosucceed="autoSucceed"
:indeterminate="indeterminate"
:decimal-place="1"
:min="0"
:max="100"
/>
</section>
</article>
</template>
<script>
import { Progress, NumberInput, Checkbox } from 'veui'
export default {
components: {
'veui-progress': Progress,
'veui-number-input': NumberInput,
'veui-checkbox': Checkbox
},
data () {
return {
type: 'bar',
value: 66.6,
desc: true,
autoSucceed: 200,
indeterminate: false
}
}
}
</script>
<style lang="less" scoped>
section + section {
margin-top: 20px;
}
section:last-child {
height: 140px;
}
.veui-checkbox {
margin-right: 15px;
}
</style>
API
Props
Name | Type | Default | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ui | string= | - | Style variants.
| ||||||||
type | string | 'bar' | The type of the progress. Available values are bar / circular , denoting progress bar and progress circle respectively. | ||||||||
desc | boolean | false | The description of the progress. | ||||||||
value | number | 0 | Progress value. | ||||||||
min | number | 0 | Minimum value. | ||||||||
max | number | 1 | Max value. | ||||||||
decimal-place | number | 0 | Decimal place for the progress value. | ||||||||
status | string | - |
The status of the progress. Available values are | ||||||||
autosucceed | boolean | number | - | Whether automatically enter the success status when the progress reaches the maximum value. true denotes entering immediately, while number values denotes the delay in milliseconds before entering the success status. | ||||||||
indeterminate | boolean | false | Whether the progress is indeterminate. Currently only works when type is bar . |
Slots
Name | Description |
---|---|
default | The description content. Displays the percentage value of the progress by default. |