diff --git a/README.md b/README.md index 1f4c454..dacaba7 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,16 @@ export default { You can stop the countdown timer anytime by passing `true` (Boolean) with `stop` props. +You can decide whether to show the days when they are zero by passing `true` (Boolean) with `showZeroDays` props. + +Example: + +``` +
+ +
+``` ### Caution -Please don't provide any confusing date format since it has no dependency to Moment.js or any other date helpers. \ No newline at end of file +Please don't provide any confusing date format since it has no dependency to Moment.js or any other date helpers. diff --git a/src/Countdown.vue b/src/Countdown.vue index d91fe91..4ef1172 100644 --- a/src/Countdown.vue +++ b/src/Countdown.vue @@ -1,6 +1,6 @@