我是靠谱客的博主 甜美裙子,最近开发中收集的这篇文章主要介绍Vue js实时显示当前时间,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

当前实例在vue项目中

export default {
    data(){
        return{
            nowTimes:{
                yy:0,
                dd:"00",
                hou:"00",
                min:"00",
                sec:"00"
            },
            setTime:null
        }
    },
    mounted(){
        this.setTime = setInterval( ()=>{
            this.setNowTimes();
        },1000)
    },
    methods:{
        setNowTimes(){
            let myDate = new Date();
            this.nowTimes.yy = myDate.getMonth()+1;
            this.nowTimes.dd = String(myDate.getDate()<10?'0'+ myDate.getDate(): myDate.getDate()) ;
            this.nowTimes.hou = String(myDate.getHours()<10?"0"+myDate.getHours():myDate.getHours());
            this.nowTimes.min = String(myDate.getMinutes()<10?'0'+myDate.getMinutes():myDate.getMinutes());
            this.nowTimes.sec = String(myDate.getSeconds()<10?'0'+myDate.getSeconds():myDate.getSeconds());
        }
    },
    beforeUpdate(){
      clearInterval(this.setTime)
  }
}

vue项目就直接用吧!

最后

以上就是甜美裙子为你收集整理的Vue js实时显示当前时间的全部内容,希望文章能够帮你解决Vue js实时显示当前时间所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(29)

评论列表共有 0 条评论

立即
投稿
返回
顶部