On This Page
显示任务完成进度的指示器,通常以进度条形式呈现。
pnpm dlx shadcn-vue@latest add progress
<script setup lang="ts"> import { Progress } from '@/components/ui/progress' </script> <template> <Progress :model-value="33" /> </template>