/*! For license information please see 7563.e00bea24.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["7563"],{83533:function(s,n,t){"use strict";t.r(n);var a=t("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

Circle

\n

Intro

\n

Circular progress bar component, and supports gradient color animation.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { Circle } from 'vant';\n\nconst app = createApp();\napp.use(Circle);\n
\n

Usage

\n

Basic Usage

\n
<van-circle\n  v-model:current-rate="currentRate"\n  :rate="30"\n  :speed="100"\n  :text="text"\n/>\n
\n
import { ref, computed } from 'vue';\n\nexport default {\n  setup() {\n    const currentRate = ref(0);\n    const text = computed(() => currentRate.value.toFixed(0) + '%');\n\n    return {\n      text,\n      currentRate,\n    };\n  },\n};\n
\n

Custom Width

\n

The width of the progress bar is controlled by the stroke-width prop, stroke-width refers to the width of path in SVG, and the default value is 40.

\n
<van-circle\n  v-model:current-rate="currentRate"\n  :rate="rate"\n  :stroke-width="60"\n  text="Custom Width"\n/>\n
\n

The unit of stroke-width is not px, if you want to know the relationship between stroke-width and px, you can use the following formula to calculate:

\n
// viewBox size for SVG\nconst viewBox = 1000 + strokeWidth;\n\n// The width of the Circle component, the default is 100px\nconst circleWidth = 100;\n\n// Final rendered progress bar width (px)\nconst pxWidth = (strokeWidth * circleWidth) / viewBox;\n
\n

Custom Color

\n
<van-circle\n  v-model:current-rate="currentRate"\n  :rate="rate"\n  layer-color="#ebedf0"\n  text="Custom Color"\n/>\n
\n

Gradient

\n
<van-circle\n  v-model:current-rate="currentRate"\n  :rate="rate"\n  :color="gradientColor"\n  text="Gradient"\n/>\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const currentRate = ref(0);\n    const gradientColor = {\n      '0%': '#3fecff',\n      '100%': '#6149f6',\n    };\n\n    return {\n      currentRate,\n      gradientColor,\n    };\n  },\n};\n
\n

Counter Clockwise

\n
<van-circle\n  v-model:current-rate="currentRate"\n  :rate="rate"\n  :clockwise="false"\n  text="Counter Clockwise"\n/>\n
\n

Custom Size

\n
<van-circle\n  v-model:current-rate="currentRate"\n  :rate="rate"\n  size="120px"\n  text="Custom Size"\n/>\n
\n

Start Position

\n
<van-circle\n  v-model:current-rate="currentRate"\n  :rate="rate"\n  text="Left"\n  start-position="left"\n/>\n<van-circle\n  v-model:current-rate="currentRate"\n  :rate="rate"\n  text="Right"\n  start-position="right"\n/>\n<van-circle\n  v-model:current-rate="currentRate"\n  :rate="rate"\n  text="Bottom"\n  start-position="bottom"\n/>\n
\n

API

\n

Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
v-model:current-rateCurrent ratenumber-
rateTarget ratenumber | string100
sizeCircle sizenumber | string100px
colorProgress color, passing object to render gradientstring | object#1989fa
layer-colorLayer colorstringwhite
fillFill colorstringnone
speedAnimate speed\uFF08rate/s\uFF09number | string0
textTextstring-
stroke-widthStroke widthnumber | string40
stroke-linecapStroke linecap, can be set to square buttstringround
clockwiseWhether to be clockwisebooleantrue
start-positionProgress start position, can be set to left\u3001right\u3001bottomCircleStartPositiontop
\n

Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescription
defaultcustom text content
\n

Types

\n

The component exports the following type definitions:

\n
import type { CircleProps, CircleStartPosition } from 'vant';\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-circle-size100px-
--van-circle-colorvar(--van-primary-color)-
--van-circle-layer-colorvar(--van-white)-
--van-circle-text-colorvar(--van-text-color)-
--van-circle-text-font-weightvar(--van-font-bold)-
--van-circle-text-font-sizevar(--van-font-size-md)-
--van-circle-text-line-heightvar(--van-line-height-md)-
\n
'},null,8,e))}}}]);