countdown-vue
v1.1.5
Published
A simple countdown timer component for vue js 2.0
Downloads
126
Readme
countdown-vue
A simple countdown timer component for VueJS 2.
Installation
npm
npm i countdown-vue --save
Usage
<template>
<div>
<Countdown end="August 22, 2022" showDays showHours showMinutes showSeconds :endFunction="function"></Countdown>
or
<Countdown end="2018-03-16T00:42:24.000Z" showDays showHours showMinutes showSeconds :endFunction="function"></Countdown>
</div>
</template>
<script>
import Countdown from 'countdown-vue'
export default {
components: { Countdown }
}
</script>
The only prop that is required is end
.
Other Config
You can stop the countdown timer anytime by passing back stop
props.