All Projects â†’ eddyerburgh â†’ vue-digital-clock

eddyerburgh / vue-digital-clock

Licence: other
🕚 Simple digital clock built with Vue.js

Programming Languages

javascript
184084 projects - #8 most used programming language
Vue
7211 projects
HTML
75241 projects

Projects that are alternatives of or similar to vue-digital-clock

tutti-quanti-shelf
Collection of miscellaneous developer-oriented utilities wrapped into one single app, built with Electron.
Stars: ✭ 30 (-23.08%)
Mutual labels:  digital-clock
vue-clock
Simple clock component using Vue.js
Stars: ✭ 43 (+10.26%)
Mutual labels:  vue-clock

vue-digital-clock

A digital clock component built with Vue.js

Installation

With NPM:

npm install --save vue-digital-clock

With Yarn

yarn add vue-digital-clock

And import it into your project

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

<template>
  <digital-clock :blink="true" />
</template>

<script>
import DigitalClock from "vue-digital-clock";

export default {
  components: {
    DigitalClock
  }
};
</script>

Screenshot

vue-digital-clock screenshot

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].