On This Page
Displays an indicator showing the completion progress of a task, typically displayed as a progress bar.
npx shadcn-vue@latest add progress
<script setup lang="ts"> import { Progress } from '@/components/ui/progress' </script> <template> <Progress :model-value="33" /> </template>