Vue implements a small countdown function

Vue implements a small countdown function

Countdown function needs to be implemented in many projects, for example: sending verification code. Now let's take an example to implement a simple countdown button function. Simple layout, simple operation, simple effect, and most importantly, understanding of the ideas and countdown steps! ! !

For example, the code is as follows:

Requirements: Click the submit button and count down for five seconds. During the countdown, the input box and submit button are disabled. After the countdown ends, the input box and submit button return to normal state.

1. First implement the required HTML layout and add click events

<div>
    <!-- disabled is true to disable -->
    Input box: <input type="text" :disabled="istrue">
    <button @click="addHandle" :disabled="istrue">Submit</button>
    <!-- Countdown text prompt-->
    <p>{{this.txt}}</p>
</div>

2. Click the submit button and the countdown starts to change to disabled state. Define a timer

<script>
export default {
  data(){
    return {
      txt:'',
      istrue:false,
      inp:''
    }
  },
  methods:{
    addHandle(){
      //define n=5 seconds let n=5
      //Define the timer time
      let time = setInterval(()=>{
        //Disable this.istrue=true
        //Change the countdown text prompt this.txt=n+'Submit in seconds'
        n--
        //If n<0, clear the timer, cancel the disabled state, and the text prompt is empty (not displayed)
        if(n<0){
          this.txt=""
          this.istrue=false
          clearInterval(time)
        }
      },1000)
    }
  }
}
</script>

The ideas and steps are written in the comments above, and a simple countdown is easily achieved.

Overall code:

<template>
  <div>
    <!-- disabled is true to disable -->
    Input box: <input type="text" :disabled="istrue">
    <button @click="addHandle" :disabled="istrue">Submit</button>
    <!-- Countdown text prompt-->
    <p>{{this.txt}}</p>
  </div>
</template>
<script>
export default {
  data(){
    return {
      txt:'',
      istrue:false,
      inp:''
    }
  },
  methods:{
    addHandle(){
      //define n=5 seconds let n=5
      //Define the timer time
      let time = setInterval(()=>{
        //Disable this.istrue=true
        //Change the countdown text prompt this.txt=n+'Submit in seconds'
        n--
        //If n<0, clear the timer, cancel the disabled state, and the text prompt is empty (not displayed)
        if(n<0){
          this.txt=""
          this.istrue=false
          clearInterval(time)
        }
      },1000)
    }
  }
}
</script>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Vue writes a simple countdown button function
  • Simple implementation of the 60-second countdown function of the vue verification code
  • Vue2.0 countdown plug-in (timestamp refresh jump is not affected)
  • SMS verification code countdown demo based on vue
  • Vue implements the countdown function of the mall flash sale
  • Vue implements countdown to get verification code effect
  • Vue implements the countdown function of the verification code button
  • Multiple countdown implementation code examples in Vue
  • Detailed explanation of designing a countdown component in Vue
  • Vue+canvas realizes a countdown plug-in with cool clock effects (a vue2 plug-in that has been published to npm and can be used out of the box)

<<:  Introduction to adding new users to MySql, creating databases for users, and assigning permissions to users

>>:  Docker container monitoring and log management implementation process analysis

Recommend

Detailed explanation of two ways to dynamically change CSS styles in react

The first method: dynamically add a class to show...

JS realizes the effect of picture waterfall flow

This article shares the specific code of JS to re...

Example of how to configure the MySQL database timeout setting

Table of contents Preface 1. JDBC timeout setting...

Native js imitates mobile phone pull-down refresh

This article shares the specific code of js imita...

How to manually upgrade the kernel in deepin linux

deepin and Ubuntu are both distributions based on...

In-depth understanding of javascript class array

js array is probably familiar to everyone, becaus...

Introduction to query commands for MySQL stored procedures

As shown below: select name from mysql.proc where...

Method example of safely getting deep objects of Object in Js

Table of contents Preface text parameter example ...

The whole process of upgrading Angular single project to multiple projects

Table of contents Preface Development Environment...

How to center your HTML button

How to center your HTML button itself? This is ea...

Vue uses rules to implement form field validation

There are many ways to write and validate form fi...

Use of Linux watch command

1. Command Introduction The watch command execute...

mysql8.0 windows x64 zip package installation and configuration tutorial

MySQL 8 Windows version zip installation steps (d...

A brief analysis of the difference between FIND_IN_SET() and IN in MySQL

I used the Mysql FIND_IN_SET function in a projec...