Skip to content

CountDown0.1.58

Used to display countdown values in real-time, supporting millisecond precision.

Basic Usage

The time property represents the total duration of the countdown in milliseconds.

html
<wd-count-down :time="time" />
ts
const time = ref<number>(30 * 60 * 60 * 1000)

Custom Format

The format property represents the countdown format, which can be customized.

html
<wd-count-down :time="time" :format="format" />
ts
const format = ref<string>('DD Days HH Hours mm Minutes ss Seconds')
const time = ref<number>(30 * 60 * 60 * 1000)

Millisecond Rendering

The millisecond property indicates whether to enable millisecond-level rendering, which is disabled by default.

html
<wd-count-down :time="time" :millisecond="true" />
ts
const time = ref<number>(30 * 60 * 60 * 1000)

Custom Style

Customize the countdown style through slots. The timeData object format is shown in the table below.

html
<wd-count-down :time="time">
  <template #default="{ current }">
    <span class="custom-count-down">{{ current.hours }}</span>
    <span class="custom-count-down-colon">:</span>
    <span class="custom-count-down">{{ current.minutes }}</span>
    <span class="custom-count-down-colon">:</span>
    <span class="custom-count-down">{{ current.seconds }}</span>
  </template>
</wd-count-down>
ts
const time = ref<number>(30 * 60 * 60 * 1000)
css
.custom-count-down {
  display: inline-block;
  width: 22px;
  color: #fff;
  font-size: 12px;
  text-align: center;
  background-color: #f0883a;
  border-radius: 2px;
}

.custom-count-down-colon {
  display: inline-block;
  margin: 0 4px;
  color: #f0883a;
}

Manual Control

Start the countdown using the start method, pause it using the pause method, and reset it using the reset method.

html
<wd-count-down ref="countDown" :time="3000" millisecond :auto-start="false" format="ss:SSS" @finish="onFinish"></wd-count-down>
<wd-grid clickable border>
  <wd-grid-item text="Start" icon="play-circle-stroke" @itemclick="start" />
  <wd-grid-item text="Pause" icon="pause-circle" @itemclick="pause" />
  <wd-grid-item text="Reset" icon="refresh" @itemclick="reset" />
</wd-grid>
ts
const { show: showToast } = useToast()

const countDown = ref<any>(null)

const start = () => {
  countDown.value.start()
}
const pause = () => {
  countDown.value.pause()
}
const reset = () => {
  countDown.value.reset()
}
const onFinish = () => showToast('Countdown ended')

Attributes

ParameterDescriptionTypeOptionsDefaultVersion
timeCountdown duration in millisecondsNumber00.1.58
millisecondEnable millisecond-level renderingBooleanfalse0.1.58
auto-startAutomatically start countdownBooleantrue0.1.58
formatCountdown format stringStringHH:mm:ss0.1.58

Events

Event NameDescriptionParametersVersion
finishTriggered when countdown ends0.1.58
changeTriggered on countdown changecurrent: TimeData0.1.58

Methods

Method NameDescriptionParametersVersion
startStart countdown0.1.58
pausePause countdown0.1.58
resetReset countdown, auto-starts if auto-start is true0.1.58

Slots

NameDescriptionVersion
Default slot0.1.58

External Classes

Class NameDescriptionVersion
custom-classRoot node style-

format Options

FormatDescription
DDDays
HHHours
mmMinutes
ssSeconds
SMilliseconds (1 digit)
SSMilliseconds (2 digits)
SSSMilliseconds (3 digits)

timeData Object

PropertyDescriptionTypeDefault
daysDaysnumber-
hoursHoursnumber-
minutesMinutesnumber-
secondsSecondsnumber-
millisecondsMillisecondsnumber-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.