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

CountDown

\n

Intro

\n

Used to display the countdown value in real time, and precision supports milliseconds.

\n

Install

\n

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

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

Usage

\n

Basic Usage

\n
<van-count-down :time="time" />\n
\n
import { ref } from 'vue';\n\nexport default {\n  setup() {\n    const time = ref(30 * 60 * 60 * 1000);\n    return { time };\n  },\n};\n
\n

Custom Format

\n
<van-count-down :time="time" format="DD Day, HH:mm:ss" />\n
\n

Millisecond

\n
<van-count-down millisecond :time="time" format="HH:mm:ss:SS" />\n
\n

Custom Style

\n
<van-count-down :time="time">\n  <template #default="timeData">\n    <span class="block">{{ timeData.hours }}</span>\n    <span class="colon">:</span>\n    <span class="block">{{ timeData.minutes }}</span>\n    <span class="colon">:</span>\n    <span class="block">{{ timeData.seconds }}</span>\n  </template>\n</van-count-down>\n\n<style>\n  .colon {\n    display: inline-block;\n    margin: 0 4px;\n    color: #1989fa;\n  }\n  .block {\n    display: inline-block;\n    width: 22px;\n    color: #fff;\n    font-size: 12px;\n    text-align: center;\n    background-color: #1989fa;\n  }\n</style>\n
\n

Manual Control

\n
<van-count-down\n  ref="countDown"\n  millisecond\n  :time="3000"\n  :auto-start="false"\n  format="ss:SSS"\n  @finish="onFinish"\n/>\n<van-grid clickable :column-num="3">\n  <van-grid-item text="Start" icon="play-circle-o" @click="start" />\n  <van-grid-item text="Pause" icon="pause-circle-o" @click="pause" />\n  <van-grid-item text="Reset" icon="replay" @click="reset" />\n</van-grid>\n
\n
import { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const countDown = ref(null);\n\n    const start = () => {\n      countDown.value.start();\n    };\n    const pause = () => {\n      countDown.value.pause();\n    };\n    const reset = () => {\n      countDown.value.reset();\n    };\n    const onFinish = () => showToast('Finished');\n\n    return {\n      start,\n      pause,\n      reset,\n      onFinish,\n      countDown,\n    };\n  },\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
AttributeDescriptionTypeDefault
timeTotal time, unit millisecondsnumber | string0
formatTime formatstringHH:mm:ss
auto-startWhether to auto start count downbooleantrue
millisecondWhether to enable millisecond renderbooleanfalse
\n

Available formats

\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
FormatDescription
DDDay
HHHour
mmMinute
ssSecond
SMillisecond, 1-digit
SSMillisecond, 2-digits
SSSMillisecond, 3-digits
\n

Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
finishEmitted when count down finished-
changeEmitted when count down changedcurrentTime: CurrentTime
\n

Slots

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionSlotProps
defaultCustom ContentcurrentTime: CurrentTime
\n

CurrentTime Structure

\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
NameDescriptionType
totalTotal time, unit millisecondsnumber
daysRemain daysnumber
hoursRemain hoursnumber
minutesRemain minutesnumber
secondsRemain secondsnumber
millisecondsRemain millisecondsnumber
\n

Methods

\n

Use ref to get CountDown instance and call instance methods.

\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
NameDescriptionAttributeReturn value
startStart count down--
pausePause count down--
resetReset count down--
\n

Types

\n

The component exports the following type definitions:

\n
import type {\n  CountDownProps,\n  CountDownInstance,\n  CountDownCurrentTime,\n} from 'vant';\n
\n

CountDownInstance is the type of component instance:

\n
import { ref } from 'vue';\nimport type { CountDownInstance } from 'vant';\n\nconst countDownRef = ref<CountDownInstance>();\n\ncountDownRef.value?.start();\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
NameDefault ValueDescription
--van-count-down-text-colorvar(--van-text-color)-
--van-count-down-font-sizevar(--van-font-size-md)-
--van-count-down-line-heightvar(--van-line-height-md)-
\n
'},null,8,l))}}}]);