Methods for using timers in vue.js: 1. Use a loop to execute setInterval. This method will be executed every time until the timer is destroyed; 2. Execute setTimeout regularly and execute setTimeout regularly. It is to set a time and only execute it once when the waiting time is reached.
【Related article recommendations: vue.js】
Used in vue.js Timer method:
1. Loop execution (setInterval)
As the name suggests, loop execution is to set a time interval, which will be executed every time This method, until the timer is destroyed
The usage is setInterval ("method name or method", "delay"), the first parameter is the method name or method, be careful not to use it when it is the method name Add brackets, the second parameter is the time interval
<template> <section> <h1 id="hello-nbsp-world">hello world~</h1> </section> </template> <script> export default { data() { return { timer: '', value: 0 }; }, methods: { get() { this.value ++; console.log(this.value); } }, mounted() { this.timer = setInterval(this.get, 1000); }, beforeDestroy() { clearInterval(this.timer); } }; </script>
The above example is to create a timer setInterval when the page is initialized, the time interval is 1 second, every second The function get will be called once, thereby increasing the value of value by one.
2. Scheduled execution (setTimeout)
Scheduled execution setTimeout is to set a time. When the waiting time arrives, it is only executed once, but the timer is still there after execution. , but it is not running.
The usage is setTimeout("method name or method", "delay"); The first parameter is the method name or method. Be careful not to add parentheses when it is the method name. The second parameter is The parameter is the time interval
<template> <section> <h1 id="hello-nbsp-world">hello world~</h1> </section> </template> <script> export default { data() { return { timer: '', value: 0 }; }, methods: { get() { this.value ++; console.log(this.value); } }, mounted() { this.timer = setTimeout(this.get, 1000); }, beforeDestroy() { clearTimeout(this.timer); } }; </script>
The above is to create a timer setTimeout when the page is initialized, and only execute the method once after 1 second.
Related free learning recommendations: JavaScript (video)
The above is the detailed content of How to use timer in vue.js. For more information, please follow other related articles on the PHP Chinese website!

VueUse 是 Anthony Fu 的一个开源项目,它为 Vue 开发人员提供了大量适用于 Vue 2 和 Vue 3 的基本 Composition API 实用程序函数。本篇文章就来给大家分享几个我常用的几个 VueUse 最佳组合,希望对大家有所帮助!

Vue3如何更好地使用qrcodejs生成二维码并添加文字描述?下面本篇文章给大家介绍一下Vue3+qrcodejs生成二维码并添加文字描述,希望对大家有所帮助。

本篇文章给大家整理分享8个GitHub上很棒的的 Vue 项目,都是非常棒的项目,希望当中有您想要收藏的那一个。

本篇文章带大家聊聊vue指令中的修饰符,对比一下vue中的指令修饰符和dom事件中的event对象,介绍一下常用的事件修饰符,希望对大家有所帮助!

如何使用VueRouter4.x?下面本篇文章就来给大家分享快速上手教程,介绍一下10分钟快速上手VueRouter4.x的方法,希望对大家有所帮助!

如何覆盖组件库样式?下面本篇文章给大家介绍一下React和Vue项目中优雅地覆盖组件库样式的方法,希望对大家有所帮助!


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 English version
Recommended: Win version, supports code prompts!

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools
