码迷,mamicode.com
首页 > 其他好文 > 详细

vue组件中倒计时,刷新页面不会从头开始

时间:2020-03-03 09:20:04      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:creat   clear   item   store   com   span   red   class   code   

开启倒计时,直接保存到vuex中,且存储到本地持久化

// state.js

const runTime = localStorage.getItem(‘time‘);

paymentRunTime:runTime
//  mutations.js

TimeReduction(state) {
    this.timerId = setInterval(() => {
      if (state.paymentRunTime === 0) {
         state.paymentRunTime = 60;
         return clearInterval(this.timerId)
      }
       state.paymentRunTime -= 1;
      localStorage.setItem(‘time‘,state.paymentRunTime)
    },1000);
  },

在需要用到的页面钩子函数调用方法, created(){ this.$store.commit(TimeReduction) } 

vue组件中倒计时,刷新页面不会从头开始

标签:creat   clear   item   store   com   span   red   class   code   

原文地址:https://www.cnblogs.com/zhaohui-116/p/12399205.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!