/*! For license information please see 4618.c301dc54.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["4618"],{73113:function(t,s,n){"use strict";n.r(s);var a=n("80681");let e=["innerHTML"];s.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Used to show the current progress of the operation.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Progress } from 'vant';\n\nconst app = createApp();\napp.use(Progress);\n
\nUse percentage
prop to set current progress.
<van-progress :percentage="50" />\n
\n<van-progress :percentage="50" stroke-width="8" />\n
\n<van-progress inactive :percentage="50" />\n
\nUse pivot-text
to custom text, use color
to custom bar color.
<van-progress pivot-text="Orange" color="#f2826a" :percentage="25" />\n<van-progress pivot-text="Red" color="#ee0a24" :percentage="50" />\n<van-progress\n :percentage="75"\n pivot-text="Purple"\n pivot-color="#7232dd"\n color="linear-gradient(to right, #be99ff, #7232dd)"\n/>\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
percentage | \nPercentage | \nnumber | string | \n0 | \n
stroke-width | \nStroke width | \nnumber | string | \n4px | \n
color | \nColor | \nstring | \n#1989fa | \n
track-color | \nTrack color | \nstring | \n#e5e5e5 | \n
pivot-text | \nPivot text | \nstring | \npercentage | \n
pivot-color | \nPivot text background color | \nstring | \ninherit progress color | \n
text-color | \nPivot text color | \nstring | \nwhite | \n
inactive | \nWhether to be gray | \nboolean | \nfalse | \n
show-pivot | \nWhether to show text | \nboolean | \ntrue | \n
The component exports the following type definitions:
\nimport type { ProgressProps, ProgressInstance } from 'vant';\n
\nThe component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-progress-height | \n4px | \n- | \n
--van-progress-color | \nvar(--van-primary-color) | \n- | \n
--van-progress-inactive-color | \nvar(--van-gray-5) | \n- | \n
--van-progress-background | \nvar(--van-gray-3) | \n- | \n
--van-progress-pivot-padding | \n0 5px | \n- | \n
--van-progress-pivot-text-color | \nvar(--van-white) | \n- | \n
--van-progress-pivot-font-size | \nvar(--van-font-size-xs) | \n- | \n
--van-progress-pivot-line-height | \n1.6 | \n- | \n
--van-progress-pivot-background | \nvar(--van-primary-color) | \n- | \n