Vue计时器的用法详解

作者:佛佛ง 时间:2024-04-28 09:28:51 

本文实例为大家分享了Vue实现计时器的具体代码,供大家参考,具体内容如下

Vue计时器的用法详解

功能简介:

1、初始值为0,点击【加】按钮,数字自+1;连续点击【加】,不影响数字+1

2、点击【停】按钮,停止+1

源码:


<!DOCTYPE html>
<html add="en">

<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <meta http-equiv="X-UA-Compatible" content="ie=edge">
 <title>Document</title>
 <!-- 1. 导入Vue包 -->
 <script src="./lib/vue-2.4.0.js"></script>
</head>

<body>
 <!-- 2. 创建一个要控制的区域 -->
 <div id="app">
   <input type="button" value="加" @click="add">
   <input type="button" value="停" @click="stop">
   <h4>{{ count }}</h4>
 </div>

<script>
   var vm = new Vue({
     el: '#app',
     data: {
       count: 0,
       intervalId: null
     },
     methods: {
       add() {
         // 计时器正在进行中,退出函数
         if (this.intervalId != null) {
           return
         };
         // 计时器为空,操作
         this.intervalId = setInterval(() => {
           this.count += 1
         }, 400)
       },
       // 停止定时器
       stop() {
         clearInterval(this.intervalId)//清除计时器
         this.intervalId = null;//设置为null
       }
     }
   })
 </script>
</body>

</html>

之前小编收藏了一个开始计时的组件,这个组件可直接引入到项目中使用,谢谢原作者分享。


<template>
   <div class="timer">
   <div ref="startTimer"></div>
   </div>
   </template>
   <script>
   export default {
   name: 'Timer',
   data () {
   return {
   timer: "",
   content: "",
   hour: 0,
   minutes: 0,
   seconds: 0
   }
   },
   created () {
   this.timer = setInterval(this.startTimer, 1000);
   },
   destroyed () {
   clearInterval(this.timer);
   },

methods: {
   startTimer () {
   this.seconds += 1;
   if (this.seconds >= 60) {
   this.seconds = 0;
   this.minute = this.minute + 1;
   }

if (this.minute >= 60) {
   this.minute = 0;
   this.hour = this.hour + 1;
   }
   this.$refs.startTimer.innerHTML = (this.minutes < 10 ? '0' + this.minutes : this.minutes) + ':' + (this.seconds < 10 ? '0' + this.seconds : this.seconds);
   }
   }
   }
   </script>
   <style>
</style>

来源:https://blog.csdn.net/LzzMandy/article/details/91345572

标签:vue,计时器
0
投稿

猜你喜欢

  • 2018年最值得一读的互联网书单

    2022-04-13 20:40:37
  • Pandas出现KeyError的问题解决及分析

    2023-07-01 16:37:22
  • python求列表交集的方法汇总

    2023-03-01 10:32:40
  • python pandas中索引函数loc和iloc的区别分析

    2021-08-31 21:44:21
  • python轻量级orm框架 peewee常用功能速查详情

    2021-10-22 20:43:52
  • Pyhton中单行和多行注释的使用方法及规范

    2021-11-21 12:13:00
  • CSS布局之浮动(一)两列布局

    2008-08-18 21:24:00
  • CSS3变换入门

    2010-01-30 13:29:00
  • 基于python的docx模块处理word和WPS的docx格式文件方式

    2021-11-13 12:07:55
  • 网页标准化-CSS命名规划整理

    2007-12-10 18:13:00
  • vue3.0如何使用computed来获取vuex里数据

    2024-04-28 09:24:20
  • js操作两个json数组合并、去重,以及删除某一项元素

    2024-04-18 10:58:23
  • Python密码学仿射密码及攻击单字母密码教程

    2021-01-25 05:52:28
  • Python中如何优雅的合并两个字典(dict)方法示例

    2023-08-02 16:15:25
  • python中的map函数语法详解

    2021-04-29 22:07:00
  • Python批量查询关键词微信指数实例方法

    2022-06-28 14:54:20
  • JavaScript设置获取和设置属性的方法

    2024-05-22 10:35:34
  • MySQL 中查找含有目标字段的表的方法

    2024-01-12 16:45:20
  • python中字符串数组逆序排列方法总结

    2023-04-18 07:19:08
  • Python中22个万用公式的小结

    2022-12-15 21:06:38
  • asp之家 网络编程 m.aspxhome.com