JIYIK CN >

Current Location:Home > Learning > WEB FRONT-END > Vue >

Vue - Setting up a countdown timer in Vue

Author:JIYIK Last Updated:2025/02/26 Views:

Countdown timers are a very common feature in modern web applications. In Vue, we can easily implement a countdown timer to provide feedback to users when they perform certain actions.

In this article, we'll look at how to set up a countdown timer in Vue, with some example code and best practices.

Use Vue's computed properties to calculate the countdown

Computed properties in Vue are a very useful feature that can calculate a value based on the current state. In the countdown timer, we can use computed properties to calculate the current remaining time.

First, we need to define a countdown end time. In this example, we will use JavaScript's Date object to represent the end time:

data() {
  return {
    endTime: new Date('2021-12-31T23:59:59')
  }
}

We can then create a computed property to calculate the current remaining time:

computed: {
  remainingTime() {
    let now = new Date()
    let diff = this.endTime - now
    let seconds = Math.floor(diff / 1000)
    let minutes = Math.floor(seconds / 60)
    let hours = Math.floor(minutes / 60)
    let days = Math.floor(hours / 24)
    return {
      seconds: seconds % 60,
      minutes: minutes % 60,
      hours: hours % 24,
      days: days
    }
  }
}

In this computed property, we first get the current time and then calculate the difference between the end time and the current time. Next, we convert the difference into seconds, minutes, hours, and days and store them in an object to use later in the template.

Display countdown in template

Now that we have defined a computed property to calculate the remaining time, we can use it in our template to display the countdown.

<template>
  <div>
    <span>{{ remainingTime.days }} days </span>
    <span>{{ remainingTime.hours }} hours </span>
    <span>{{ remainingTime.minutes }} minutes </span>
    <span>{{ remainingTime.seconds }} seconds </span>
  </div>
</template>

In this template, we use mustachethe syntax to display the remaining time stored in the computed property. We display the remaining days, remaining hours, remaining minutes, and remaining seconds in different span elements.

Add dynamic updates

Now, we have been able to set up a countdown timer in Vue and display it in the template. However, this countdown timer will only calculate the remaining time once when the page loads. In order to make the countdown timer dynamically update, we need to use Vue's lifecycle hook function.

Specifically, we can use the mounted hook function to start a timer that updates the remaining time stored in the computed property every second.

mounted() {
  this.timer = setInterval(() => {
    this.remainingTime = this.calculateRemainingTime()
  }, 1000)
}

In this code, we use the setInterval function to start a timer that executes every second. Each time the timer function executes, we recalculate the remaining time and store it in a computed property.

Best Practices

When setting up a countdown timer in Vue, there are some best practices that can help us write better code. Here are some things to keep in mind:

  • Add get and set methods for the computed property so that you can manually set the remaining time when needed.
  • Use a relative time library such as moment.js to calculate time differences to make it easier to handle different time zones and daylight saving time.
  • Clear the timer when the component is destroyed to avoid memory leaks.

Sample Code

Finally, here is a complete Vue component that implements a countdown timer and displays it in a template:

<template>
  <div>
    <span>{{ remainingTime.days }} days </span>
    <span>{{ remainingTime.hours }} hours </span>
    <span>{{ remainingTime.minutes }} minutes </span>
    <span>{{ remainingTime.seconds }} seconds </span>
  </div>
</template>

<script>
import moment from 'moment'

export default {
  data() {
    return {
      endTime: new Date('2021-12-31T23:59:59')
    }
  },
  computed: {
    remainingTime: {
      get() {
        let now = new Date()
        let diff = this.endTime - now
        let duration = moment.duration(diff)
        return {
          seconds: duration.seconds(),
          minutes: duration.minutes(),
          hours: duration.hours(),
          days: duration.days()
        }
      },
      set(value) {
        this.endTime = value
      }
    }
  },
  mounted() {
    this.timer = setInterval(() => {
      this.remainingTime = this.calculateRemainingTime()
    }, 1000)
  },
  beforeDestroy() {
    clearInterval(this.timer)
  },
  methods: {
    calculateRemainingTime() {
      let now = new Date()
      let diff = this.endTime - now
      let duration = moment.duration(diff)
      return {
        seconds: duration.seconds(),
        minutes: duration.minutes(),
        hours: duration.hours(),
        days: duration.days()
      }
    }
  }
}
</script>

In this component, we use the moment.js library to calculate time differences and add the getand setmethods to computed properties. We also mountedstart a timer in the hook function and beforeDestroyclear it in the hook function.


Summarize

In this article, we introduced how to set up a countdown timer in Vue, and provided some sample code and best practices. By using Vue's computed properties and lifecycle hook functions, we can easily implement a dynamically updated countdown timer and display it in the template.

In actual development, countdown timer is a very common function that can be used in various scenarios, such as user login timeout, verification code validity period, countdown for flash sale activities, etc. By mastering the method of setting countdown timer in Vue, we can provide these functions to users more easily.

Of course, in addition to the methods mentioned in this article, there are many other implementation methods and techniques. In the actual development process, we can choose the most suitable method to implement the countdown timer according to specific needs and project characteristics.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Webpack packages ES6 and CommonJs mixed React

Publish Date:2025/03/02 Views:179 Category:React

This article mainly introduces how to use webpack to package and compile React mixed with ES6 and CommonJs. It is a process of upgrading the React environment.

How to scroll to the top or bottom of the page in Vue.js

Publish Date:2025/03/01 Views:96 Category:Vue

Vue.js is a popular front-end framework that helps developers build efficient and maintainable applications. In Vue.js, scrolling the page to the top or bottom is a common requirement. In this article, we will introduce how to implement this

Display element or text on mouse hover in vue

Publish Date:2025/03/01 Views:179 Category:Vue

Vue.js is a popular JavaScript framework that makes web application development easier and more efficient. In this tutorial, we will learn how to use Vue.js to display an element or text on mouse hover. This tutorial will cover the following

What is the use of the immediate property of watch in Vue?

Publish Date:2025/03/01 Views:67 Category:Vue

In Vue, watch is a way to perform asynchronous tasks or trigger responsive dependencies when data changes. In most cases, watch will be delayed by default. This means that the watch will only be triggered when the value being monitored chang

Setting up checkbox functionality in Vue

Publish Date:2025/03/01 Views:186 Category:Vue

In Vue, checkboxes are a very common interactive component that allows users to select multiple options. This article will introduce how to set up checkbox functionality in Vue and provide some practical examples.

What happens if a child component changes the data in props in Vue?

Publish Date:2025/03/01 Views:140 Category:Vue

In Vue, when a child component changes the data in props, it will cause the responsiveness of the parent component and other child components to change. First, you need to understand that props is a way to pass data from a parent component t

How to refresh the page in Vue

Publish Date:2025/03/01 Views:91 Category:Vue

Vue is a popular JavaScript framework that provides many convenient tools and methods for building web applications. In Vue, page updates are usually achieved through data binding and responsive systems. But sometimes you need to refresh the

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial