5.0.1 • Published 6 months ago

@vue-layout/countdown v5.0.1

Weekly downloads
-
License
-
Repository
github
Last release
6 months ago

@vue-layout/countdown ⏰

npm version CI

This package provides a customizable countdown timer for Vue3 web applications. It offers a range of options for customization, including start and end times, step length, and more. Ideal for time-based events such as auctions, sales, or promotions.

Table of Contents

Installation

$ npm i --save @vue-layout/countdown

Usage

Register the plugin.

import install from '@vue-layout/countdown';
import { createApp } from 'vue'

const app = createApp({})

app.use(install, {
  /* optional options */
})

After the component is registered, it can be used as follows.

<template>
    <VCCountdown
        :auto-start="true"
        :emit-events="true"
        :interval="1000"
        :time="3600 * 1000"
    >
        <template #default="props">
            The countdown is still running for
            <span>
                {{ props.hours }} hour(s),
                {{ props.minutes }} minute(s),
                {{ props.seconds }} second(s)
            </span>.
        </template>
    </VCCountdown>
</template>

License

Made with 💚

Published under MIT License.

3.6.2

6 months ago

5.0.1

6 months ago

5.0.0

6 months ago

2.3.0

12 months ago

2.4.0

12 months ago

3.0.0

11 months ago

2.0.1

1 year ago

2.0.0

1 year ago