9.7k

Progress

PreviousNext

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

<!-- AUTO-GENERATED BY scripts/generate-custom-demos.ts. DO NOT EDIT DIRECTLY. -->
<script setup lang="ts">
import VProgress from '@ui-kit/src/components/Base/VProgress/VProgress.vue'
</script>

<template>
  <div class="w-full max-w-md">
    <VProgress :model-value="68" with-text />
  </div>
</template>

Installation

pnpm dlx shadcn-vue@latest add progress

Usage

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

<template>
  <Progress :model-value="33" />
</template>