countdown vue

<template>
   {{ countDown }}
</template>

<script>
    export default {
        data() {
            return {
                countDown : 10
            }
        },
        method: {
            countDownTimer() {
                if(this.countDown > 0) {
                    setTimeout(() => {
                        this.countDown -= 1
                        this.countDownTimer()
                    }, 1000)
                }
            }
        }
        created: {
           this.countDownTimer()
        }
    }
</script>

4.5
4
Awgiedawgie 440220 points

                                    &lt;template&gt;
   {{ countDown }}
    &lt;button type=&quot;button&quot; v-on:click=&quot;countdown = 5&quot;&gt; setTimeout &lt;/button&gt;
&lt;/template&gt;
        
&lt;script&gt;
    export default {
        data() {
            return {
                countDown : 0
            }
        },
        method: {}
        watch: {
            countdown: function(val) {
                if(val &gt; 0) {
                    setTimeout(() =&gt; {
                        this.countdown -= 1;
                    }, 1000);
                }
            },
        }
    }
&lt;/script&gt;

4.5 (4 Votes)
0
3.67
3
A-312 69370 points

                                    &lt;template&gt;
    {{ timerCount }}
&lt;/template&gt;

&lt;script&gt;

    export default {

        data() {
            return {
                timerCount: 30
            }
        },

        watch: {

            timerCount: {
                handler(value) {

                    if (value &gt; 0) {
                        setTimeout(() =&gt; {
                            this.timerCount--;
                        }, 1000);
                    }

                },
                immediate: true // This ensures the watcher is triggered upon creation
            }

        }
    }

&lt;/script&gt;

3.67 (3 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
countdown using vue vue event countdown vue countdown clock npm vue show timer how to make countdown timer in vue vue minutes countdown timer vue-countdown format how to make vue.js timer counter vue date countdown timer countdown timer vue component how to create a timer in vue craeting a timer in vue vue js timer function vue expiration countdown timer vue js time count down vue countdown to date vue timers vue date countdown vuejs timer example creasting a timer in vue start a timer vue acurate countdown timer vue how to create timer in vue vuejs countdown example how to countdown in vue js vue digital countdown vue-countdown for vue js 2 in loop vue-countdown for vue js 2 for n in countdown in vue.js js date countdown with vuesjs seconds countdown vue timer.start vue vue js timer not working make countdown with vue vue countdown and callback build a countdown expiry date timer in vue 3 build a countdown timer in vue 3 build a countdown timer in vue countdown page vuejs how to make a timer in vue vue-countdown timer vue js input countdown vue js input countdown timer vue countdown npm vuejs set timer countdown countdown vue countdown timer tutorial vuejs vue js countdown v-model vue js listen to countdown vue listen to countdown vuejs show timer count down timer vuejs vue flip countdown timer vue js set timer simple countdown timer with vue 2 vuejs show countdown timer vuex vuejs show countdown timer vue js countdownd countdown with vue js vue js timer vue component timer make a vuejs timer vue count down timer how to write timer on vue creating a countdown timer in vuejs vue timer component vue 60 second countdown timer Countdown vue.js how to set timer in vue countdown minute vue vue live timer vue js moment countdown timer vuejs countdown time alert vuejs countdown time aler vue countdown timer codepen creating a timer in vue DRAFT COUNTDOWN vue vue.js timer countdown vuejs based on date countdown with date vuejs countdown minut with vue js countdown minutes vuejs countdown minutes vue countdown timer vue display timer in vue create timer vue vue on finished countdown vue date countdown component vue countdown component vuejs timer vue start timer vuejs countdown component vuejs count down timer countdown timer inn vue countdown in vue js npm vue countdown timer component countdown vuetify vuetify create countdown timer form vue countdown timer seconds countdown timer in vue js vue js count down timer vue display timer vue-countdown-timer end text vue countdown till date vue countdown animation vue-countdown vue 2 using countdownjs woth vue count up timer vue vue timer countdown timer button vue countdown timer vue js laravel vue countdown timer accurate countdown.js vue vue countdown timer' create seconds countdown vue vuejs time countdown vuejs time countdown timer watch time counter vue 10 second timer vue simple countdown vue vue countdown timer - npm countdown timer vuetify 1 hour countdown timer vue.js vue countdown timer npm start on click vue countdown timer npm vuetify 1 hour tiner timer clock vue js jQuery.countdown vuejs vuejs-countdown timer vuejs simple timer adding countdown timer vuetify vue clock timer vuetify countdown timer min and seconds vuetify countdown timer countdown from date in vue js countdown in vue js timer in vuejs vuejs time down 100 vuejs time down count down vuejs countdown till data vue count down in vue vuejs countdown vuejs countdown tutorial vuejs timer countdown vue periodic timer with countdown vue fancy countdown simple time counter vue js minutes cutown timer vue js timer minutes js vue timer in vuetify stopwatch timer in vuetify how to get countdown with vue js how to get count down in vue js get countdown timer minute vue js countdown timer using vue.js how to get countdown in vue js how to do countdown min in vue js how to do countdown in vue js how to get revers countdown vue js vue timer minute countdown count down in vue js making a count down timer with vue bootstrap making a count down timer with vue vue countdown seconds vuex countdown seconds vue props timer to seconds vue.js show countdown on the button label that indicates vue js countdown from date vue js countdown timer vue js timer countdown a minute countdown javascript vue count down time vue.js countdown timer vuejs vue.js countdown timer vue countdown clock vue js countdown timer count down vue js example vue timer countdown timer count down in vuejs countdown timer 3 minutes to 0 seconds vuejs vue countdown countdown vuejs vue countdown timer vuejs countdown timer
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source