Progress

Displays an indicator of progress.

Preview

Installation

bash
npm install radix-vue

Examples

Basic

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

const progress = ref(50)
</script>

<template>
  <Progress v-model="progress" />
</template>
Edit this page on GitHub