进度条

显示任务完成进度的指示器,通常以进度条形式呈现。

安装

pnpm dlx shadcn-vue@latest add progress

使用方法

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

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