/*! For license information please see 5964.6ffe809b.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["5964"],{67661:function(s,n,a){"use strict";a.r(n);var t=a("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Used to show the various parts of the action flow and let the user know where the current action fits into the overall flow.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Step, Steps } from 'vant';\n\nconst app = createApp();\napp.use(Step);\napp.use(Steps);\n
\n<van-steps :active="active">\n <van-step>Step1</van-step>\n <van-step>Step2</van-step>\n <van-step>Step3</van-step>\n <van-step>Step4</van-step>\n</van-steps>\n
\nimport { ref } from 'vue';\n\nexport default {\n setup() {\n const active = ref(1);\n return { active };\n },\n};\n
\n<van-steps :active="active" active-icon="success" active-color="#07c160">\n <van-step>Step1</van-step>\n <van-step>Step2</van-step>\n <van-step>Step3</van-step>\n <van-step>Step4</van-step>\n</van-steps>\n
\n<van-steps direction="vertical" :active="0">\n <van-step>\n <h3>\u3010City\u3011Status1</h3>\n <p>2016-07-12 12:40</p>\n </van-step>\n <van-step>\n <h3>\u3010City\u3011Status2</h3>\n <p>2016-07-11 10:00</p>\n </van-step>\n <van-step>\n <h3>\u3010City\u3011Status3</h3>\n <p>2016-07-10 09:30</p>\n </van-step>\n</van-steps>\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
active | \nActive step | \nnumber | string | \n0 | \n
direction | \nCan be set to vertical | \nstring | \nhorizontal | \n
active-color | \nActive step color | \nstring | \n#07c160 | \n
inactive-color | \nInactive step color | \nstring | \n#969799 | \n
active-icon | \nActive icon name | \nstring | \nchecked | \n
inactive-icon | \nInactive icon name | \nstring | \n- | \n
finish-icon | \nFinish icon name | \nstring | \n- | \n
icon-prefix | \nIcon className prefix | \nstring | \nvan-icon | \n
Name | \nDescription | \n
---|---|
default | \nStep content | \n
active-icon | \nCustom active icon | \n
inactive-icon | \nCustom inactive icon | \n
finish-icon | \nCustom finish icon | \n
Event | \nDescription | \nArguments | \n
---|---|---|
click-step | \nEmitted when a step\'s title or icon is clicked | \nindex: number | \n
The component exports the following type definitions:
\nimport type { StepsProps, StepsDirection } 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-step-text-color | \nvar(--van-text-color-2) | \n- | \n
--van-step-active-color | \nvar(--van-primary-color) | \n- | \n
--van-step-process-text-color | \nvar(--van-text-color) | \n- | \n
--van-step-font-size | \nvar(--van-font-size-md) | \n- | \n
--van-step-line-color | \nvar(--van-border-color) | \n- | \n
--van-step-finish-line-color | \nvar(--van-primary-color) | \n- | \n
--van-step-finish-text-color | \nvar(--van-text-color) | \n- | \n
--van-step-icon-size | \n12px | \n- | \n
--van-step-circle-size | \n5px | \n- | \n
--van-step-circle-color | \nvar(--van-gray-6) | \n- | \n
--van-step-horizontal-title-font-size | \nvar(--van-font-size-sm) | \n- | \n
--van-steps-background | \nvar(--van-background-2) | \n- | \n