120k

Progress

Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.

Installation

pnpm dlx shadcn@latest add @force-ui-vue/progress

Usage

<script setup lang="ts">
import { Progress } from "@/components/ui/progress"
</script>
 
<template>
  <Progress :model-value="33" />
</template>

Examples

Label

Use a Field component to add a label to the progress bar.

Controlled

A progress bar that can be controlled by a slider.

RTL

To enable RTL support in Force UI, see the RTL configuration guide.

API Reference

See the Radix UI Progress documentation.