Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eddyerburgh/vue-digital-clock

🕚 Simple digital clock built with Vue.js
https://github.com/eddyerburgh/vue-digital-clock

digital-clock vue vue-clock vue-digital-clock vue2 vuejs vuejs2

Last synced: 10 days ago
JSON representation

🕚 Simple digital clock built with Vue.js

Awesome Lists containing this project

README

        

# vue-digital-clock

> A digital clock component built with Vue.js

## Installation

With NPM:

```shell
npm install --save vue-digital-clock
```

With Yarn

```shell
yarn add vue-digital-clock
```

And import it into your project

```javascript
import DigitalClock from "vue-digital-clock";
```

## Props

| Prop | Type | Usage |
| ------ | ---- | ------ |
| blink | Boolean | Set as true to have the colon blink with the seconds|
| displaySeconds | Boolean | Set as true to display seconds|
| twelveHour | Boolean | Set as true to display times with AM/PM|

## Example

```vue

import DigitalClock from "vue-digital-clock";

export default {
components: {
DigitalClock
}
};

```

## Screenshot

![vue-digital-clock screenshot](https://raw.githubusercontent.com/eddyerburgh/vue-digital-clock/master/assets/vue-digital-clock.gif)