/countdown-vue

Countdown plugin for Vue2

Primary LanguageVueMIT LicenseMIT

countdown-vue

A simple countdown timer component for VueJS 2.

screenshot

Installation

npm

npm i countdown-vue --save

Usage

<template>
  <div>
    <Countdown end="August 22, 2022" showDays showHours showMinutes showSeconds></Countdown>
    or 
    <Countdown end="2018-03-16T00:42:24.000Z" showDays showHours showMinutes showSeconds></Countdown>
  </div>
</template>
<script>
import Countdown from 'vuejs-countdown'

export default {
  components: { Countdown }
}
</script>

Other Config

You can stop the countdown timer anytime by passing back stop props.

Based on gentanwar's plugin