Progress 进度条

使用指南

  1. import { Progress } from 'vant';
  2. Vue.use(Progress);

代码演示

基础用法

进度条默认为蓝色,使用percentage属性来设置当前进度

  1. <van-progress :percentage="50" />

置灰

  1. <van-progress inactive :percentage="50" />

样式定制

可以使用pivot-text属性自定义文字,color属性自定义进度条颜色

  1. <van-progress
  2. pivot-text="橙色"
  3. color="#f2826a"
  4. :percentage="25"
  5. />
  6. <van-progress
  7. pivot-text="红色"
  8. color="#f3594b"
  9. :percentage="50"
  10. />
  11. <van-progress
  12. :percentage="75"
  13. pivot-text="紫色"
  14. pivot-color="#7232dd"
  15. color="linear-gradient(to right, #be99ff, #7232dd)"
  16. />

API

参数 说明 类型 默认值
inactive 是否置灰 Boolean false
percentage 进度百分比 Number false
show-pivot 是否显示进度文字 Boolean true
color 进度条颜色 String #38f
text-color 进度条文字颜色 String #fff
pivot-text 文字显示 String 百分比文字
pivot-color 文字背景色 String 与进度条颜色一致

原文:

https://youzan.github.io/vant/#/zh-CN/progress