65%
vue
<p-progress :value="uploadProgress" />
<small>{{ uploadProgress }}%</small>Custom max
7 of 10vue
<p-progress :value="taskProgress" :max="10" />
<small>{{ taskProgress }} of 10</small>PProgress is a small native progress helper for known progress and "still working" loading states.
<p-progress :value="uploadProgress" />
<small>{{ uploadProgress }}%</small><p-progress :value="taskProgress" :max="10" />
<small>{{ taskProgress }} of 10</small><p-progress indeterminate /><p-progress
:value="uploadProgress"
tooltip="Upload is 65% complete"
tooltip-placement="top"
/>| Name | Type | Default | Description |
|---|---|---|---|
value | number | - | Current progress value. Omitted when indeterminate is true. |
max | number | 100 | Maximum progress value. |
indeterminate | boolean | false | Renders an indeterminate progress indicator. |
tooltip | string | - | Optional Pico tooltip content. |
tooltipPlacement | PTooltipPlacement | - | Optional Pico tooltip placement. |
