A Vue digital clock component, for use out the box
npm install vue-digital-clock> A digital clock component built with Vue.js
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";
| 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|
`vue
``