Progress

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

Installation

bash
npx shadcn-vue@latest add progress

Usage

vue
<script setup lang="ts">
import { Progress } from '@/components/ui/progress'
</script>

<template>
  <Progress :model-value="33" />
</template>
Edit this page on GitHub